File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
packages/auth/test/integration/flows Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,13 @@ let totpTimestamp: Date;
5252let emulatorUrl : string | null ;
5353let 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 ;
You can’t perform that action at this time.
0 commit comments