()
| 529 | } |
| 530 | |
| 531 | function skipIfEslintMissing() { |
| 532 | if (!fs.existsSync( |
| 533 | path.join(__dirname, '..', '..', 'tools', 'eslint', 'node_modules', 'eslint'), |
| 534 | )) { |
| 535 | skip('missing ESLint'); |
| 536 | } |
| 537 | } |
| 538 | |
| 539 | function canCreateSymLink() { |
| 540 | // On Windows, creating symlinks requires admin privileges. |
nothing calls this directly
no test coverage detected
searching dependent graphs…