Add --list
, --ignored
and --exact
to wasm-bindgen-test-runner
#4356
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 intends to add support for
nextest
towasm-bindgen-test-runner
. For the requirements see thenextest
documentation.--list
and the corresponding--format
. We only support theterse
format and only together with--list
.--ignored
.--exact
.--nocapture
. Browsers now showconsole.*()
calls in-place instead of after test results, analogous tocargo test
.While this PR now makes
wasm-bindgen-test-runner
work withcargo nextest
, there are a couple of caveats:*DRIVER_REMOTE
. That said,geckodriver
doesn't support parallel sessions.wasm-bindgen-test-runner
.wasm-bindgen
takes a non-trivial amount of time when not compiled with therelease
profile. While this isn't an issue for users, its an issue for our CI. We can still improve the situation further by caching the post-processed output.Replaces #3920.
Addresses #3891.