(target, path)
| 32 | } |
| 33 | |
| 34 | function testAsync(target, path) { |
| 35 | fs.symlink(target, path, common.mustSucceed(() => { |
| 36 | fs.readdirSync(path); |
| 37 | })); |
| 38 | } |
| 39 | |
| 40 | async function testPromises(target, path) { |
| 41 | await fsPromises.symlink(target, path); |
no test coverage detected
searching dependent graphs…