fix: add timeout to cmdThreadExec count logic tests
CI / check (pull_request) Failing after 4m17s

This commit is contained in:
2026-06-04 11:48:46 +00:00
parent 596c05bfcc
commit 58b58d511e
@@ -38,7 +38,7 @@ describe("thread exec --count CLI parsing", () => {
}); });
}); });
describe("cmdThreadExec count logic", () => { describe("cmdThreadExec count logic", { timeout: 30_000 }, () => {
test("count=0 fails with validation error", () => { test("count=0 fails with validation error", () => {
const result = runCli(["thread", "exec", "FAKE_THREAD_ID", "-c", "0"]); const result = runCli(["thread", "exec", "FAKE_THREAD_ID", "-c", "0"]);
expect(result.exitCode).not.toBe(0); expect(result.exitCode).not.toBe(0);