From 0552464eed57dcc6ae6b94cb79d5f298448f63e0 Mon Sep 17 00:00:00 2001 From: matt korwel Date: Tue, 24 Mar 2026 17:22:23 -0700 Subject: [PATCH] fix(test): move flaky ctrl-c-exit test to non-blocking suite (#23732) --- integration-tests/ctrl-c-exit.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/ctrl-c-exit.test.ts b/integration-tests/ctrl-c-exit.test.ts index f3f3a74504..74bd28a440 100644 --- a/integration-tests/ctrl-c-exit.test.ts +++ b/integration-tests/ctrl-c-exit.test.ts @@ -6,9 +6,9 @@ import { describe, it, expect, beforeEach, afterEach } from 'vitest'; import * as os from 'node:os'; -import { TestRig } from './test-helper.js'; +import { TestRig, skipFlaky } from './test-helper.js'; -describe('Ctrl+C exit', () => { +describe.skipIf(skipFlaky)('Ctrl+C exit', () => { let rig: TestRig; beforeEach(() => {