From aceaf75b4cb69ebb26bc495686f9d1efbeee6049 Mon Sep 17 00:00:00 2001 From: Christina Holland Date: Mon, 10 Nov 2025 14:20:21 -0800 Subject: [PATCH] Disable flaky totp tests --- packages/auth/test/integration/flows/totp.test.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/packages/auth/test/integration/flows/totp.test.ts b/packages/auth/test/integration/flows/totp.test.ts index 9d8e8893de5..a62c475ce7b 100644 --- a/packages/auth/test/integration/flows/totp.test.ts +++ b/packages/auth/test/integration/flows/totp.test.ts @@ -52,7 +52,13 @@ let totpTimestamp: Date; let emulatorUrl: string | null; let mfaUser: MultiFactorUser | null; -describe(' Integration tests: Mfa enrollment using totp', () => { +/** + * TOTP tests disabled until they can be rewritten without requiring a + * permanent account. + */ + +// eslint-disable-next-line no-restricted-properties +describe.skip(' Integration tests: Mfa enrollment using totp', () => { beforeEach(async () => { emulatorUrl = getEmulatorUrl(); if (!emulatorUrl) { @@ -122,7 +128,8 @@ describe(' Integration tests: Mfa enrollment using totp', () => { }); }); -describe('Integration tests: sign-in for mfa-enrolled users', () => { +// eslint-disable-next-line no-restricted-properties +describe.skip('Integration tests: sign-in for mfa-enrolled users', () => { beforeEach(async () => { emulatorUrl = getEmulatorUrl(); mfaUser = null;