[tests][iid] added iid() tests -> 100% coverage
This commit is contained in:
parent
2382347a43
commit
042b4bd736
|
@ -0,0 +1,22 @@
|
|||
describe('iid()', () => {
|
||||
describe('get()', () => {
|
||||
it('returns instance id string', async () => {
|
||||
const iid = await firebase.iid().get();
|
||||
iid.should.be.a.String();
|
||||
});
|
||||
});
|
||||
|
||||
describe('delete()', () => {
|
||||
it('deletes the current instance id', async () => {
|
||||
const iidBefore = await firebase.iid().get();
|
||||
iidBefore.should.be.a.String();
|
||||
|
||||
await firebase.iid().delete();
|
||||
|
||||
const iidAfter = await firebase.iid().get();
|
||||
iidAfter.should.be.a.String();
|
||||
|
||||
iidBefore.should.not.equal(iidAfter);
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue