-
Notifications
You must be signed in to change notification settings - Fork 904
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing interdependency in mfa totp integration tests ax (#7362)
* reorganized mfa totp integration tests * formatted the code * added await for enroll function calls * created fakePassword to store password * fixed typo in mfaUser * moved fakePassword into integration helpers file * changed fakePassword var name to password
- Loading branch information
1 parent
574585a
commit 8e9aac2
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,6 +113,6 @@ export function getTotpCode( | |
return token; | ||
} | ||
export const email = '[email protected]'; | ||
export const fakePassword = 'password'; | ||
export const password = 'password'; | ||
//1000000 is always incorrect since it has 7 digits and we expect 6. | ||
export const incorrectTotpCode = '1000000'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters