(testFile?: string, testGrep?: string)
| 30 | } |
| 31 | |
| 32 | function isBedrockTargetedRun(testFile?: string, testGrep?: string) { |
| 33 | if (testFile?.toLowerCase().includes("bedrock.test")) { |
| 34 | return true |
| 35 | } |
| 36 | |
| 37 | return testGrep?.toLowerCase().includes("bedrock") ?? false |
| 38 | } |
| 39 | |
| 40 | async function main() { |
| 41 | const isRecord = process.env.AIMOCK_RECORD === "true" |