lint: Add missing semicolons in test

This commit is contained in:
Blade Barringer
2016-05-14 22:45:35 -05:00
parent 50d7345832
commit 4a2e3d4410

View File

@@ -22,7 +22,7 @@ describe('POST /debug/update-user', () => {
lastCron: newCron, lastCron: newCron,
}); });
await user.sync() await user.sync();
expect(user.lastCron).to.eql(newCron); expect(user.lastCron).to.eql(newCron);
expect(user.balance).to.eql(100); expect(user.balance).to.eql(100);
@@ -34,7 +34,7 @@ describe('POST /debug/update-user', () => {
'purchased.txnCount': 100, 'purchased.txnCount': 100,
}); });
await user.sync() await user.sync();
expect(user.contributor.level).to.eql(9); expect(user.contributor.level).to.eql(9);
expect(user.purchased.txnCount).to.eql(100); expect(user.purchased.txnCount).to.eql(100);