()
| 273 | const runTestWrap = common.mustCall(runTest, numtests); |
| 274 | |
| 275 | function cleanupTmpFile() { |
| 276 | try { |
| 277 | // Write over the file, clearing any history |
| 278 | fs.writeFileSync(defaultHistoryPath, ''); |
| 279 | } catch (err) { |
| 280 | if (err.code === 'ENOENT') return true; |
| 281 | throw err; |
| 282 | } |
| 283 | return true; |
| 284 | } |
| 285 | |
| 286 | function runTest() { |
| 287 | const opts = tests.shift(); |
no test coverage detected
searching dependent graphs…