-
Notifications
You must be signed in to change notification settings - Fork 6.1k
feat(test runner): expose TestRun to reporters #41793
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| # class: TestRun | ||
| * since: v1.62 | ||
| * langs: js | ||
|
|
||
| Controls which tests will run and their expected status. A [TestRun] is available during [`method: Reporter.preprocess`]. Setup and teardown projects cannot be changed. | ||
|
|
||
| ## method: TestRun.exclude | ||
| * since: v1.62 | ||
|
|
||
| Excludes a test or suite from the run. Excluded tests do not appear in the report and their bodies are not executed. | ||
|
|
||
| ### param: TestRun.exclude.test | ||
| * since: v1.62 | ||
| - `test` <[TestCase]|[Suite]> | ||
|
|
||
| Test or suite to exclude. The root suite cannot be excluded. | ||
|
|
||
| ## method: TestRun.fail | ||
| * since: v1.62 | ||
|
|
||
| Marks a test or every test in a suite as "should fail". Playwright runs the tests and ensures they are actually failing, useful for documenting broken functionality until it is fixed. | ||
|
|
||
| ### param: TestRun.fail.test | ||
| * since: v1.62 | ||
| - `test` <[TestCase]|[Suite]> | ||
|
|
||
| Test or suite to mark as expected-to-fail. | ||
|
|
||
| ### param: TestRun.fail.reason | ||
| * since: v1.62 | ||
| - `reason` ?<[string]> | ||
|
|
||
| Optional explanation surfaced as the annotation description. | ||
|
|
||
| ## method: TestRun.fixme | ||
| * since: v1.62 | ||
|
|
||
| Marks a test or every test in a suite as fixme. The test bodies are not executed and the tests are reported as skipped, with the intention to fix them. | ||
|
|
||
| ### param: TestRun.fixme.test | ||
| * since: v1.62 | ||
| - `test` <[TestCase]|[Suite]> | ||
|
|
||
| Test or suite to mark as fixme. | ||
|
|
||
| ### param: TestRun.fixme.reason | ||
| * since: v1.62 | ||
| - `reason` ?<[string]> | ||
|
|
||
| Optional explanation surfaced as the annotation description. | ||
|
|
||
| ## method: TestRun.skip | ||
| * since: v1.62 | ||
|
|
||
| Skips a test or every test in a suite. The test bodies are not executed and the tests are reported as skipped. | ||
|
|
||
| ### param: TestRun.skip.test | ||
| * since: v1.62 | ||
| - `test` <[TestCase]|[Suite]> | ||
|
|
||
| Test or suite to skip. | ||
|
|
||
| ### param: TestRun.skip.reason | ||
| * since: v1.62 | ||
| - `reason` ?<[string]> | ||
|
|
||
| Optional explanation surfaced as the annotation description. | ||
|
|
||
| ## method: TestRun.skipSharding | ||
| * since: v1.62 | ||
|
|
||
| Disables Playwright's built-in shard filter for this run, leaving sharding to the reporter. Reporters typically implement their own sharding by calling [`method: TestRun.exclude`] on out-of-shard tests. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Wow!