mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 22:50:20 +08:00
[tests][iid] added iid() tests -> 100% coverage
This commit is contained in:
22
bridge/e2e/iid/iid.e2e.js
Normal file
22
bridge/e2e/iid/iid.e2e.js
Normal file
@@ -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);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user