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 1cd1ed2 commit c5dc6d9Copy full SHA for c5dc6d9
packages/compass-e2e-tests/index.ts
@@ -180,6 +180,10 @@ function cleanup() {
180
// 10 minutes of inactivity if we get into a broken state
181
const timeoutId = setTimeout(() => {
182
clearInterval(intervalId);
183
+
184
+ // Just exit now rather than waiting for 10 minutes just so evergreen can
185
+ // kill the task and fail anyway.
186
+ process.exit(process.exitCode ?? 1);
187
}, 60_000);
188
189
// No need to hold things up for a minute if there's nothing else preventing
0 commit comments