Skip to content

Commit aceaf75

Browse files
committed
Disable flaky totp tests
1 parent 0800a8b commit aceaf75

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)