(flag: string)
| 17 | import { addWriteToFileResultFixtures } from "./fixtures/write-to-file" |
| 18 | |
| 19 | function getCliFlagValue(flag: string) { |
| 20 | return process.argv.find((arg, index) => process.argv[index - 1] === flag) |
| 21 | } |
| 22 | |
| 23 | function isDeepSeekTargetedRun(testFile?: string, testGrep?: string) { |
| 24 | if (testFile?.toLowerCase().includes("deepseek-v4.test")) { |