Skip to content

Commit 17c3266

Browse files
ryancbahanclaude
andcommitted
Clarify test entry points in testing strategy docs
Distinguish between `pnpm test` (Vitest unit tests) and `pnpm test:e2e` (Playwright end-to-end suite) so contributors know how to exercise the full test suite. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9374634 commit 17c3266

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/cli/testing-strategy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ test("loads the app", async () => {
3030
})
3131
```
3232

33-
Tests can be run with `pnpm test` or `pnpm test:watch` for the entire workspace or individual packages. `test:watch` keeps the process alive and runs tests as files are changed. If you want to run a single test, pass the path to the file as argument:
33+
Tests can be run with `pnpm test` for the Vitest suite, `pnpm test:watch` for watch mode, or `pnpm test:e2e` for the Playwright end-to-end suite. If you want to run a single unit test, pass the path to the file as argument:
3434

3535
```
3636
pnpm test path/to/my.test.ts

0 commit comments

Comments
 (0)