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
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions contributors.yml
Expand Up @@ -675,3 +675,4 @@
- zainfathoni
- zayenz
- zhe
- mic-sob
4 changes: 2 additions & 2 deletions docs/guides/contributing.md
Expand Up @@ -215,14 +215,14 @@ The playground generated from `pnpm playground:new` is based on a template in `s

### Testing

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

```shellscript nonumber
# Test all packages
pnpm test

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

## Repository Branching
Expand Down