Fixed syntax error in test.
This commit is contained in:
parent
2a5d0b9cc3
commit
167131b270
@ -7,7 +7,7 @@ describe('Realm', () => {
|
|||||||
it('should generate a 16-character ID', () => {
|
it('should generate a 16-character ID', () => {
|
||||||
const realm = new Realm();
|
const realm = new Realm();
|
||||||
expect(realm.generateClientId().length).to.eq(16);
|
expect(realm.generateClientId().length).to.eq(16);
|
||||||
expect(realm.generateClientId(() => 'abcd').to.eq('abcd');
|
expect(realm.generateClientId(() => 'abcd')).to.eq('abcd');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user