Skip to content
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

Docs: Add wasm-pack test example for single test #1196

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/src/commands/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,12 @@ $ tree crates/foo
# Run all tests in tests/diff_patch.rs in Firefox
wasm-pack test crates/foo --firefox --headless --test diff_patch

# Run all tests in tests/diff_patch.rs that contain the word "replace"
# Run all tests in tests/diff_patch.rs that contain the word "replace" (does that still work?)
wasm-pack test crates/foo --firefox --headless --test diff_patch replace

# Run single test in tests/diff_patch.rs
wasm-pack test crates/foo --firefox --headless --test diff_patch -- modname::test_name

# Run all tests inside of a `tests` module inside of src/lib/diff.rs
wasm-pack test crates/foo --firefox --headless --lib diff::tests

Expand Down