Skip to content

Commit ee6d592

Browse files
committed
add 60s timeout to integration tests
1 parent ec5ec9d commit ee6d592

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
@@ -245,9 +245,9 @@ jobs:
245245
command: |
246246
cd ${{ matrix.package }}
247247
if [ "${{ matrix.package }}" = ".agents" ]; then
248-
find __tests__ -name '*.integration.test.ts' 2>/dev/null | sort | xargs -I {} bun test {} || echo "No integration tests found in .agents"
248+
find __tests__ -name '*.integration.test.ts' 2>/dev/null | sort | xargs -I {} bun test --timeout=60000 {} || echo "No integration tests found in .agents"
249249
else
250-
find src -name '*.integration.test.ts' | sort | xargs -I {} bun test {}
250+
find src -name '*.integration.test.ts' | sort | xargs -I {} bun test --timeout=60000 {}
251251
fi
252252
253253
# E2E tests for web intentionally omitted for now.

0 commit comments

Comments
 (0)