()
| 212 | |
| 213 | { |
| 214 | async function test() { |
| 215 | const dir = await fsPromises.opendir(testDir, { recursive: true }); |
| 216 | const dirents = []; |
| 217 | for await (const dirent of dir) { |
| 218 | dirents.push(dirent); |
| 219 | } |
| 220 | assertDirents(dirents); |
| 221 | } |
| 222 | |
| 223 | test().then(common.mustCall()); |
| 224 | } |
no test coverage detected
searching dependent graphs…