-
Notifications
You must be signed in to change notification settings - Fork 84
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
test(progress-tracker): convert tests to playwright - FE-6150 #6454
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit c0331a4:
|
); | ||
}); | ||
|
||
([[true], [false]] as const).forEach(([boolean]) => { |
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.
([[true], [false]] as const).forEach(([boolean]) => { | |
([true, false] as const).forEach(([boolean]) => { |
}); | ||
}); | ||
|
||
test.describe( |
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.
(non-blocking):
test.describe( | |
test.describe("Accessibility tests", () => { |
@@ -0,0 +1,21 @@ | |||
import type { Page } from "@playwright/test"; |
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.
import type { Page } from "@playwright/test"; | |
import { Page } from "@playwright/test"; |
@@ -152,6 +152,7 @@ const ProgressTracker = ({ | |||
error={error} | |||
> | |||
<InnerBar | |||
data-element="inner-bar" |
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.
praise: like the addition of a new test tag for greater specificity
de60578
to
1e7883d
Compare
🎉 This PR is included in version 124.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Proposed behaviour
Reactor tests to use Playwright.
Current behaviour
Tests currently use Cypress.
Checklist
d.ts
file added or updated if requiredQA
Additional context
N/A
Testing instructions
N/A