We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5c6adf commit e36530cCopy full SHA for e36530c
.github/workflows/ci.yml
@@ -150,7 +150,13 @@ jobs:
150
echo "No regular tests found in .agents"
151
fi
152
elif [ "${{ matrix.package }}" = "web" ]; then
153
- bun run test --runInBand
+ # Use bun test directly to pick up bunfig.toml preloads for Request global
154
+ TEST_FILES=$(find src -name '*.test.ts' ! -name '*.integration.test.ts' ! -path 'src/__tests__/e2e/*' 2>/dev/null | sort | tr '\n' ' ')
155
+ if [ -n "$TEST_FILES" ]; then
156
+ bun test $TEST_FILES
157
+ else
158
+ echo "No tests found in web"
159
+ fi
160
else
161
# Run all non-integration tests in a single bun test invocation
162
# This avoids xargs exit code issues with orphaned child processes
0 commit comments