Skip to content

Commit

Permalink
add fixme to new key stretching tests for reset password
Browse files Browse the repository at this point in the history
  • Loading branch information
vpomerleau committed May 22, 2024
1 parent 683c16c commit f9af7b1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ test.describe('severity-2 #smoke', () => {
page,
target,
pages: {
configPage,
signinReact,
signupReact,
settings,
Expand All @@ -60,6 +61,11 @@ test.describe('severity-2 #smoke', () => {
},
testAccountTracker,
}) => {
const config = await configPage.getConfig();
test.fixme(
config.featureFlags.resetPasswordWithCode === true,
'see FXA-9612'
);
const { email, password } = testAccountTracker.generateAccountDetails();
await page.goto(
`${target.contentServerUrl}/?showReactApp=true&forceExperiment=generalizedReactApp&forceExperimentGroup=react&${signup.query}`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,20 @@ test.describe('severity-2 #smoke', () => {
test(`signs up as v${signup.version} resets password as v${reset.version} and signs in as v${signin.version}`, async ({
page,
target,
pages: { signinReact, signupReact, settings, resetPasswordReact },
pages: {
configPage,
signinReact,
signupReact,
settings,
resetPasswordReact,
},
testAccountTracker,
}) => {
const config = await configPage.getConfig();
test.fixme(
config.featureFlags.resetPasswordWithCode === true,
'see FXA-9612'
);
const { email, password } = testAccountTracker.generateAccountDetails();
await page.goto(
`${target.contentServerUrl}/?showReactApp=true&forceExperiment=generalizedReactApp&forceExperimentGroup=react&${signup.query}`
Expand Down

0 comments on commit f9af7b1

Please sign in to comment.