Skip to content

Commit

Permalink
IdentitiesManager test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuakarp committed Dec 17, 2021
1 parent 74e2c3b commit c89c541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/identities/IdentitiesManager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ describe('IdentitiesManager', () => {
const result1 = await authProcess.next();
// The test provider will provider a dummy authcode
expect(result1.value).toBeDefined();
expect(typeof result1.value).toBe('string');
expect(typeof result1.value).toBe('object');
expect(result1.done).toBe(false);
// This is when we have completed it
const result2 = await authProcess.next();
Expand Down

0 comments on commit c89c541

Please sign in to comment.