(id)
| 149 | test(`${version}: transformModuleId works`, async (assert) => { |
| 150 | const bundle = await rollup(opts) |
| 151 | const transformModuleId = (id) => `transformed-${basename(id)}` |
| 152 | const expect = `transformed-${importA}.js` |
| 153 | const modules = (await analyze(bundle, { transformModuleId })).modules |
| 154 | const firstModule = basename(modules[0].id) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…