We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have 3 test cases with names: Testt, Test, TTest
command: npx playwright test --grep "^Test$" should execute only test case "Test"
Expected
Playwright should run single test "Test"
Actual
Playwright run "TTest" and "Test" it looks like problem with sign "^" for --grep regex
The text was updated successfully, but these errors were encountered:
Playwright matches against the titlePath() not only the test title. We describe it here but not here and here.
We should make it more clear or fix it.
Sorry, something went wrong.
docs: make --grep more clear (#26324)
1383844
Fixes #24604
docs: make --grep more clear (microsoft#26324)
a39cd06
Fixes microsoft#24604
mxschmitt
Successfully merging a pull request may close this issue.
System info
I have 3 test cases with names:
Testt, Test, TTest
command:
npx playwright test --grep "^Test$" should execute only test case "Test"
Expected
Playwright should run single test "Test"
Actual
Playwright run "TTest" and "Test" it looks like problem with sign "^" for --grep regex
The text was updated successfully, but these errors were encountered: