(filePath: string)
| 112 | export const FREE_TEST_TIMEOUT_MS = 10_000; |
| 113 | |
| 114 | export function normalizeRelativePath(filePath: string): string { |
| 115 | return filePath.replace(/\\/g, '/'); |
| 116 | } |
| 117 | |
| 118 | export function isFreeTestFile(relativePath: string): boolean { |
| 119 | const normalized = normalizeRelativePath(relativePath); |
no outgoing calls
no test coverage detected