Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/compass-e2e-tests/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ function cleanup() {
// 10 minutes of inactivity if we get into a broken state
const timeoutId = setTimeout(() => {
clearInterval(intervalId);

// Just exit now rather than waiting for 10 minutes just so evergreen can
// kill the task and fail anyway.
process.exit(process.exitCode ?? 1);
}, 60_000);

// No need to hold things up for a minute if there's nothing else preventing
Expand Down