Skip to content

Commit 5318c78

Browse files
committed
build: fix pnpm test
Signed-off-by: Adam Setch <[email protected]>
1 parent e04c9fe commit 5318c78

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
cache: 'pnpm'
1818
- run: pnpm install
1919
- run: pnpm tsc --noEmit
20-
- run: pnpm test -- --coverage --runInBand --verbose
20+
- run: pnpm test --coverage --runInBand --verbose
2121
- name: Archive code coverage results
2222
uses: actions/upload-artifact@v4
2323
with:

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@ pnpm lint:check
4545
# Run unit tests with coverage
4646
pnpm test
4747
48-
# If you want to pass arguments to jest (or other `pnpm` commands)
49-
# like `--watch`, you can prepend `--` to the command
50-
pnpm test -- --watch
48+
# Update jest snapshots
49+
pnpm test -u
5150
```
5251
5352
### Releases

0 commit comments

Comments
 (0)