()
| 13 | let testIndex = 0; |
| 14 | |
| 15 | function getFilename() { |
| 16 | const filename = tmpdir.resolve(`test-file-${++testIndex}`); |
| 17 | fs.writeFileSync(filename, 'test'); |
| 18 | return filename; |
| 19 | } |
| 20 | |
| 21 | function verifyStats(bigintStats, numStats, allowableDelta) { |
| 22 | // allowableDelta: It's possible that the file stats are updated between the |
no test coverage detected
searching dependent graphs…