(s)
| 18 | myVfs.writeFileSync('/src/hello.txt', 'hello world'); |
| 19 | myVfs.mount(mountPoint); |
| 20 | const p = (s) => path.join(mountPoint, s); |
| 21 | |
| 22 | // Path-based reads |
| 23 | assert.strictEqual((await fsp.stat(p('src/hello.txt'))).isFile(), true); |
no test coverage detected