()
| 22 | |
| 23 | let count = 0; |
| 24 | async function createFile() { |
| 25 | const filePath = tmpdir.resolve(`close_errors_${++count}.txt`); |
| 26 | await writeFile(filePath, 'content'); |
| 27 | return filePath; |
| 28 | } |
| 29 | |
| 30 | async function checkCloseError(op) { |
| 31 | try { |
no test coverage detected