perf: expand vitest thread lanes

This commit is contained in:
Peter Steinberger
2026-03-22 11:25:18 -07:00
parent aa80b1eb7c
commit 95ae8aabb7
3 changed files with 73 additions and 2 deletions

View File

@@ -31,6 +31,13 @@ describe("scripts/test-find-thread-candidates parseArgs", () => {
files: ["src/a.test.ts"],
});
});
it("accepts zero thresholds for explicit deep scans", () => {
expect(parseArgs(["--min-duration-ms", "0", "--min-gain-ms", "0"])).toMatchObject({
minDurationMs: 0,
minGainMs: 0,
});
});
});
describe("scripts/test-find-thread-candidates exclusions", () => {