Skip to content

Commit

Permalink
Merge pull request #17374 from mozilla/fix-key-stretch-tests
Browse files Browse the repository at this point in the history
Fix key stretch tests
  • Loading branch information
dschom authored Aug 9, 2024
2 parents cb73c50 + 3f4b558 commit 72de7c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,8 @@ test.describe('severity-2 #smoke', () => {
confirmSignupCode,
},
testAccountTracker,
}, { project }) => {
}) => {
const config = await configPage.getConfig();
test.fixme(
project.name !== 'local' &&
signupVersion.version === 1 &&
resetVersion.version === 2 &&
signinVersion.version === 1,
'FXA-9742'
);
test.skip(
config.featureFlags.resetPasswordWithCode !== true,
'TODO in FXA-9728, remove this config check'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,8 @@ test.describe('severity-2 #smoke', () => {
confirmSignupCode,
},
testAccountTracker,
}, { project }) => {
}) => {
const config = await configPage.getConfig();
test.fixme(
project.name !== 'local' &&
signupVersion.version === 1 &&
resetVersion.version === 2 &&
signinVersion.version === 1,
'FXA-9742'
);
test.skip(
config.featureFlags.resetPasswordWithCode === true,
'TODO in FXA-9728, remove this file'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,8 @@ test.describe('severity-2 #smoke', () => {
confirmSignupCode,
},
testAccountTracker,
}, { project }) => {
}) => {
const config = await configPage.getConfig();
test.fixme(
project.name !== 'local' &&
signupVersion.version === 1 &&
resetVersion.version === 2 &&
signinVersion.version === 2,
'FXA-9765'
);
test.skip(
config.featureFlags.resetPasswordWithCode !== true,
'TODO in FXA-9728, remove this config check'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,8 @@ test.describe('severity-2 #smoke', () => {
confirmSignupCode,
},
testAccountTracker,
}, { project }) => {
}) => {
const config = await configPage.getConfig();
test.fixme(
project.name !== 'local' &&
signupVersion.version === 1 &&
resetVersion.version === 2 &&
signinVersion.version === 2,
'FXA-9765'
);
test.skip(
config.featureFlags.resetPasswordWithCode === true,
'TODO in FXA-9728 - remove this file'
Expand Down

0 comments on commit 72de7c9

Please sign in to comment.