We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e116c0 commit 943a376Copy full SHA for 943a376
1 file changed
.claude/run-e2e-tests.sh
@@ -116,17 +116,13 @@ run_e2e_tests() {
116
117
# GH_TOKEN is already exported from setup_git_and_gh, no need to re-export
118
119
- # Run the tests with a timeout
120
- if timeout 480 bash "$PROJECT_ROOT/tests/test_e2e.sh"; then
+ # Run the tests (timeout should be handled externally)
+ if bash "$PROJECT_ROOT/tests/test_e2e.sh"; then
121
log_info "✅ E2E tests completed successfully!"
122
return 0
123
else
124
local exit_code=$?
125
- if [[ $exit_code -eq 124 ]]; then
126
- log_error "❌ E2E tests timed out after 8 minutes"
127
- else
128
- log_error "❌ E2E tests failed with exit code: $exit_code"
129
- fi
+ log_error "❌ E2E tests failed with exit code: $exit_code"
130
return $exit_code
131
fi
132
}
0 commit comments