(filePath)
| 96 | } |
| 97 | |
| 98 | function getFileHash(filePath) { |
| 99 | const content = fs.readFileSync(filePath, 'utf8'); |
| 100 | return crypto.createHash('md5').update(content).digest('hex'); |
| 101 | } |
| 102 | |
| 103 | function isFileCached(filePath, cache) { |
| 104 | if (testAll) return false; // --all flag bypasses cache |
no test coverage detected