Skip to content

Commit aaa5cd2

Browse files
committed
Updated to use new structure
1 parent 0124850 commit aaa5cd2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages-exp/auth-exp/test/integration/flows/anonymous.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ import {
88
import { OperationType } from '@firebase/auth-types-exp';
99
import { FirebaseError } from '@firebase/util';
1010

11-
import { describeIntegration, randomEmail } from '../../helpers/integration/with_test_instance';
11+
import { initIntegrationTestContext, randomEmail } from '../../helpers/integration/helpers';
1212

1313
use(chaiAsPromised);
1414

15-
describeIntegration('anonymous auth', auth => {
15+
describe('Integration test: anonymous auth', () => {
16+
const auth = initIntegrationTestContext();
17+
1618
it('signs in anonymously', async () => {
1719
const userCred = await signInAnonymously(auth);
1820
expect(auth.currentUser).to.eq(userCred.user);

0 commit comments

Comments
 (0)