File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages-exp/auth-exp/src/core/auth Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import { isNode } from '@firebase/util';
32
32
33
33
import { expect } from 'chai' ;
34
34
import {
35
- browserSessionPersistence ,
36
35
inMemoryPersistence
37
36
} from '../../../internal' ;
38
37
@@ -222,13 +221,13 @@ describe('core/auth/initialize', () => {
222
221
it ( 'should not throw if called again with same params' , ( ) => {
223
222
const auth = initializeAuth ( fakeApp , {
224
223
errorMap : prodErrorMap ,
225
- persistence : browserSessionPersistence ,
224
+ persistence : fakeSessionPersistence ,
226
225
popupRedirectResolver : fakePopupRedirectResolver
227
226
} ) ;
228
227
expect (
229
228
initializeAuth ( fakeApp , {
230
229
errorMap : prodErrorMap ,
231
- persistence : browserSessionPersistence ,
230
+ persistence : fakeSessionPersistence ,
232
231
popupRedirectResolver : fakePopupRedirectResolver
233
232
} )
234
233
) . to . equal ( auth ) ;
You can’t perform that action at this time.
0 commit comments