()
| 49 | fs.open(__filename, 'r', null, common.mustSucceed()); |
| 50 | |
| 51 | async function promise() { |
| 52 | await (await fs.promises.open(__filename)).close(); |
| 53 | await (await fs.promises.open(__filename, 'r')).close(); |
| 54 | } |
| 55 | |
| 56 | promise().then(common.mustCall()); |
| 57 |
no test coverage detected