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
- browserLocalPersistence ,
36
35
browserSessionPersistence ,
37
36
inMemoryPersistence
38
37
} from '../../../internal' ;
@@ -259,11 +258,11 @@ describe('core/auth/initialize', () => {
259
258
260
259
it ( 'should throw if called again with different params (persistence)' , ( ) => {
261
260
initializeAuth ( fakeApp , {
262
- persistence : [ browserLocalPersistence , browserSessionPersistence ]
261
+ persistence : [ inMemoryPersistence , fakeSessionPersistence ]
263
262
} ) ;
264
263
expect ( ( ) =>
265
264
initializeAuth ( fakeApp , {
266
- persistence : [ browserSessionPersistence , browserLocalPersistence ]
265
+ persistence : [ fakeSessionPersistence , inMemoryPersistence ]
267
266
} )
268
267
) . to . throw ( ) ;
269
268
} ) ;
You can’t perform that action at this time.
0 commit comments