()
| 6 | test('mock node_modules dependency', async (t) => { |
| 7 | const mock = t.mock.module(fixture, { |
| 8 | namedExports: { fn() { return 42; } }, |
| 9 | }); |
| 10 | let cjsImpl = require(fixture); |
| 11 | let esmImpl = await import(fixture); |
no outgoing calls
no test coverage detected