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

Fix test command in contributing guide #9237

Merged
merged 3 commits into from Apr 29, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions docs/guides/contributing.md
Expand Up @@ -216,14 +216,14 @@ The playground generated from `yarn playground:new` is based on a template in `s

### Testing

Before running the tests, you need to run a build. After you build, running `yarn test` from the root directory will run **every** package's tests. If you want to run tests for a specific package, use `yarn test --selectProjects <display-name>`:
Before running the tests, you need to run a build. After you build, running `yarn test` from the root directory will run **every** package's tests. If you want to run tests for a specific package, use `yarn test:primary --selectProjects <display-name>`:

```shellscript nonumber
# Test all packages
yarn test

# Test only @remix-run/express
yarn test --selectProjects express
yarn test:primary --selectProjects express
```

## Repository Branching
Expand Down