(filePath)
| 562 | ]; |
| 563 | |
| 564 | function _isTestFile(filePath) { |
| 565 | if (!filePath) return false; |
| 566 | const normalized = filePath.replace(/\\/g, '/'); |
| 567 | return TEST_FILE_PATTERNS.some(re => re.test(normalized)); |
| 568 | } |
| 569 | |
| 570 | // ─── Singleton ──────────────────────────────────────────────────────────────── |
| 571 |
no outgoing calls