mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +00:00
lint: Add missing semicolons in test
This commit is contained in:
parent
50d7345832
commit
4a2e3d4410
1 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ describe('POST /debug/update-user', () => {
|
|||
lastCron: newCron,
|
||||
});
|
||||
|
||||
await user.sync()
|
||||
await user.sync();
|
||||
|
||||
expect(user.lastCron).to.eql(newCron);
|
||||
expect(user.balance).to.eql(100);
|
||||
|
|
@ -34,7 +34,7 @@ describe('POST /debug/update-user', () => {
|
|||
'purchased.txnCount': 100,
|
||||
});
|
||||
|
||||
await user.sync()
|
||||
await user.sync();
|
||||
|
||||
expect(user.contributor.level).to.eql(9);
|
||||
expect(user.purchased.txnCount).to.eql(100);
|
||||
|
|
|
|||
Loading…
Reference in a new issue