fix(test): move flaky ctrl-c-exit test to non-blocking suite (#23732)

This commit is contained in:
matt korwel
2026-03-24 17:22:23 -07:00
committed by GitHub
parent bbdd8457df
commit 0552464eed

View File

@@ -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(() => {