(fn)
| 13 | ); |
| 14 | |
| 15 | function ignoreExpectedError(fn) { |
| 16 | try { |
| 17 | fn(); |
| 18 | } catch { |
| 19 | // Ignore expected file system errors from the missing path. |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | const fd = fs.openSync(process.execPath, -0); |
| 24 | fs.closeSync(fd); |
no test coverage detected
searching dependent graphs…