()
| 598 | } |
| 599 | |
| 600 | function runTest() { |
| 601 | const tmpDirs = ['cycles', 'cycles/folder']; |
| 602 | tmpDirs.forEach(function(t) { |
| 603 | t = tmp(t); |
| 604 | fs.mkdirSync(t, 0o700); |
| 605 | }); |
| 606 | fs.writeFileSync(tmp('cycles/root.js'), "console.error('roooot!');"); |
| 607 | console.error('start tests'); |
| 608 | runNextTest(); |
| 609 | } |
| 610 | |
| 611 | |
| 612 | process.on('exit', function() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…