Skip to content

Commit d1d898f

Browse files
authored
Disable flaky totp tests (#9371)
1 parent 578686b commit d1d898f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,13 @@ let totpTimestamp: Date;
5252
let emulatorUrl: string | null;
5353
let mfaUser: MultiFactorUser | null;
5454

55-
describe(' Integration tests: Mfa enrollment using totp', () => {
55+
/**
56+
* TOTP tests disabled until they can be rewritten without requiring a
57+
* permanent account.
58+
*/
59+
60+
// eslint-disable-next-line no-restricted-properties
61+
describe.skip(' Integration tests: Mfa enrollment using totp', () => {
5662
beforeEach(async () => {
5763
emulatorUrl = getEmulatorUrl();
5864
if (!emulatorUrl) {
@@ -122,7 +128,8 @@ describe(' Integration tests: Mfa enrollment using totp', () => {
122128
});
123129
});
124130

125-
describe('Integration tests: sign-in for mfa-enrolled users', () => {
131+
// eslint-disable-next-line no-restricted-properties
132+
describe.skip('Integration tests: sign-in for mfa-enrolled users', () => {
126133
beforeEach(async () => {
127134
emulatorUrl = getEmulatorUrl();
128135
mfaUser = null;

0 commit comments

Comments
 (0)