(name, buf)
| 10 | tmpdir.refresh(); |
| 11 | |
| 12 | function writeFile(name, buf) { |
| 13 | const p = path.join(tmpdir.path, name); |
| 14 | fs.writeFileSync(p, buf); |
| 15 | return p; |
| 16 | } |
| 17 | |
| 18 | function expectMatches(filePath, rawBuf) { |
| 19 | assert.strictEqual( |
no test coverage detected
searching dependent graphs…