Skip to content

Commit fe42c64

Browse files
committed
fix signOut missing definition
1 parent c76861a commit fe42c64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/auth/test/integration/flows/firebaseserverapp.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import {
2727
getAuth,
2828
onAuthStateChanged,
2929
signInAnonymously,
30+
signOut,
3031
updateProfile
3132
} from '@firebase/auth';
3233
import { isBrowser } from '@firebase/util';
@@ -51,8 +52,8 @@ describe('Integration test: Auth FirebaseServerApp tests', () => {
5152
});
5253

5354
afterEach(async () => {
55+
await signOut(serverAppAuth);
5456
await cleanUpTestInstance(auth);
55-
await serverAppAuth.signOut();
5657
});
5758

5859
it('signs in with anonymous user', async () => {

0 commit comments

Comments
 (0)