We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c0ae8 commit f41a232Copy full SHA for f41a232
packages/auth-compat/src/auth.test.ts
@@ -102,7 +102,10 @@ describe('auth compat', () => {
102
);
103
// eslint-disable-next-line @typescript-eslint/no-floating-promises
104
await authCompat.signInWithRedirect(new exp.GoogleAuthProvider());
105
- expect(setItemSpy).not.to.have.been.calledWith('firebase:persistence:api-key:undefined', 'TEST');
+ expect(setItemSpy).not.to.have.been.calledWith(
106
+ 'firebase:persistence:api-key:undefined',
107
+ 'TEST'
108
+ );
109
}
110
});
111
@@ -152,7 +155,7 @@ describe('auth compat', () => {
152
155
exp.indexedDBLocalPersistence,
153
156
exp.browserLocalPersistence,
154
157
exp.browserSessionPersistence,
- exp.inMemoryPersistence,
158
+ exp.inMemoryPersistence
159
]
160
161
0 commit comments