-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea6f0e4
commit 1879ddc
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -721,6 +721,15 @@ describe('does not call NoIdentityAvailable event', () => { | |
await uid2.setIdentityFromEmail('[email protected]', mocks.makeUid2CstgOption()); | ||
}).not.toThrow(); | ||
|
||
expect(handler).not.toHaveBeenLastCalledWith(EventType.NoIdentityAvailable, { | ||
identity: null, | ||
}); | ||
}); | ||
test('when identity is set with local storage', () => { | ||
let validIdentity = makeIdentity(); | ||
mocks.setUid2LocalStorage(validIdentity); | ||
uid2.init({}); | ||
|
||
expect(handler).not.toHaveBeenLastCalledWith(EventType.NoIdentityAvailable, { | ||
identity: null, | ||
}); | ||
|