-
Notifications
You must be signed in to change notification settings - Fork 228
chore(tests): Functional tests polish and skipping passwordless #20262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -24,6 +24,14 @@ async function getPasswordlessSession( | |||||||
| } | ||||||||
|
|
||||||||
| test.describe('severity-2', () => { | ||||||||
| // TODO: Remove when passwordless is enabled in production | ||||||||
| test.beforeEach(({}, { project }) => { | ||||||||
| test.skip( | ||||||||
| ['production', 'stage'].includes(project.name), | ||||||||
|
||||||||
| ['production', 'stage'].includes(project.name), | |
| project.name.startsWith('production') || | |
| project.name.startsWith('stage'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems a bit excessive
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test.beforeEach(({}, { project }) => { ... })uses an empty destructuring pattern ({}), which is flagged by ESLint'sno-empty-patternrule (enabled viaeslint:recommended). Use an unused identifier instead (e.g.(_, testInfo)or(_fixtures, { project })) to avoid a lint failure.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Meh