(filePath, message)
| 432 | } |
| 433 | |
| 434 | function ensureFileExists(filePath, message) { |
| 435 | if (!fs.existsSync(filePath)) { |
| 436 | fail(message); |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | function relativeToProject(filePath) { |
| 441 | return path.relative(projectRoot, filePath) || '.'; |
no test coverage detected