Skip to content

Commit 538a9ad

Browse files
hyperb1issclaude
andcommitted
fix: 🐛 remove extra -- in Jest test commands
Changed from: pnpm test -- --ci Changed to: pnpm test --ci The extra -- caused Jest to interpret flags as test patterns instead of actual command flags, resulting in "No tests found". 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9a9c29d commit 538a9ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: pnpm build
5858

5959
- name: 🧪 Run unit tests
60-
run: pnpm test -- --ci --runInBand --coverage
60+
run: pnpm test --ci --runInBand --coverage
6161

6262
- name: 🚀 Run integration tests
6363
run: pnpm test:integration
@@ -120,4 +120,4 @@ jobs:
120120
run: pnpm build
121121

122122
- name: 🧪 Test
123-
run: pnpm test -- --ci --runInBand
123+
run: pnpm test --ci --runInBand

0 commit comments

Comments
 (0)