Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions packages/auth/test/integration/flows/totp.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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;
Expand Down
Loading