Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34.2k
test_runner: display skipped subtests in spec reporter output#46651
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
nodejs-github-bot merged 1 commit into nodejs:main from richiemccoll:test-runner/skip-tests-spec-reporterFeb 18, 2023
Merged
test_runner: display skipped subtests in spec reporter output #46651
nodejs-github-bot merged 1 commit into nodejs:main from richiemccoll:test-runner/skip-tests-spec-reporterFeb 18, 2023
+20 −14
Conversation
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
Contributor
richiemccoll commented Feb 14, 2023 • edited
Loading Uh oh!
There was an error while loading. Please reload this page.
edited
Uh oh!
There was an error while loading. Please reload this page.
Collaborator
nodejs-github-bot commented Feb 14, 2023
Review requested:
|
Member
MoLow commented Feb 14, 2023
188f7bb to b523233CompareContributorAuthor
richiemccoll commented Feb 15, 2023
@MoLow Agree, although I do think having the text does help. I pushed a small adjustment. WDYT? |
cjihrig approved these changes Feb 15, 2023
Contributor
cjihrig left a comment
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.
LGTM if @MoLow is ok with it.
MoLow approved these changes Feb 15, 2023
Collaborator
nodejs-github-bot commented Feb 16, 2023
b523233 to 63cc30eCompare63cc30e to a65bbaaCompareCollaborator
nodejs-github-bot commented Feb 18, 2023
Collaborator
nodejs-github-bot commented Feb 18, 2023
Collaborator
nodejs-github-bot commented Feb 18, 2023
Collaborator
nodejs-github-bot commented Feb 18, 2023
Commit Queue failed- Loading data for nodejs/node/pull/46651 ✔ Done loading data for nodejs/node/pull/46651 ----------------------------------- PR info ------------------------------------ Title test_runner: display skipped subtests in spec reporter output (#46651) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch richiemccoll:test-runner/skip-tests-spec-reporter -> nodejs:main Labels author ready, needs-ci, dont-land-on-v14.x, test_runner Commits 1 - test_runner: display skipped tests in spec reporter output Committers 1 - richiemccoll PR-URL: https://github.com/nodejs/node/pull/46651 Reviewed-By: Colin Ihrig Reviewed-By: Moshe Atlow ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/46651 Reviewed-By: Colin Ihrig Reviewed-By: Moshe Atlow -------------------------------------------------------------------------------- ⚠ Commits were pushed since the last review: ⚠ - test_runner: display skipped tests in spec reporter output ℹ This PR was created on Tue, 14 Feb 2023 15:37:17 GMT ✔ Approvals: 2 ✔ - Colin Ihrig (@cjihrig) (TSC): https://github.com/nodejs/node/pull/46651#pullrequestreview-1299611688 ✔ - Moshe Atlow (@MoLow): https://github.com/nodejs/node/pull/46651#pullrequestreview-1300108084 ✔ Last GitHub CI successful ℹ Last Full PR CI on 2023-02-18T20:42:36Z: https://ci.nodejs.org/job/node-test-pull-request/49708/ - Querying data for job/node-test-pull-request/49708/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/4213293471 |
MoLow approved these changes Feb 18, 2023
Collaborator
nodejs-github-bot commented Feb 18, 2023
Landed in 261bf96 |
This was referenced Feb 19, 2023
MoLow pushed a commit to MoLow/node that referenced this pull request Feb 25, 2023
PR-URL: nodejs#46651 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
MoLow pushed a commit to MoLow/node that referenced this pull request Feb 25, 2023
PR-URL: nodejs#46651 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
MoLow pushed a commit to MoLow/node that referenced this pull request Feb 25, 2023
PR-URL: nodejs#46651 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
juanarbol pushed a commit that referenced this pull request Mar 3, 2023
PR-URL: #46651 Backport-PR-URL: #46839 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Merged
juanarbol pushed a commit that referenced this pull request Mar 5, 2023
PR-URL: #46651 Backport-PR-URL: #46839 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
targos pushed a commit that referenced this pull request Mar 13, 2023
PR-URL: #46651 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
Labels
author readyPRs that have at least one approval, no pending requests for changes, and a CI started. needs-ciPRs that need a full CI run. test_runnerIssues and PRs related to the test runner subsystem.
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.


This PR highlights skipped tests when running with
--test-reporter=spec.At the moment this is using the same approach as the tap reporter which is to display the
# SKIPmessage. I've also updated the icon/color in thespecstyle to visually indicate what tests are skipped.Given the following block of tests, here are some before/after snippets to highlight the minor change.
Before
After