(result)
| 27 | } |
| 28 | |
| 29 | function expectFsNamespace(result) { |
| 30 | Promise.resolve(result) |
| 31 | .then(common.mustCall((ns) => { |
| 32 | assert.strictEqual(typeof ns.default.writeFile, 'function'); |
| 33 | assert.strictEqual(typeof ns.writeFile, 'function'); |
| 34 | })); |
| 35 | } |
| 36 | |
| 37 | // For direct use of import expressions inside of CJS or ES modules, including |
| 38 | // via direct/indirect eval, all kinds of specifiers should work without issue. |
no test coverage detected
searching dependent graphs…