You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -245,9 +245,9 @@ jobs:
245
245
command: |
246
246
cd ${{ matrix.package }}
247
247
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"
249
249
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 {}
251
251
fi
252
252
253
253
# E2E tests for web intentionally omitted for now.
0 commit comments