(filePath: string)
| 10 | } from './types.js'; |
| 11 | |
| 12 | function normalizePath(filePath: string): string { |
| 13 | return filePath.toLowerCase().replace(/\\/g, '/'); |
| 14 | } |
| 15 | |
| 16 | function isTestFile(filePath: string): boolean { |
| 17 | const normalized = normalizePath(filePath); |
no outgoing calls
no test coverage detected