(m)
| 126 | const bundle = await rollup(opts) |
| 127 | const noMatch = (m) => m.id.indexOf('jimmy') !== -1 |
| 128 | const hasMatch = (m) => m.id.indexOf(importB) !== -1 |
| 129 | assert.is((await analyze(bundle, { filter: noMatch })).modules.length, 0) |
| 130 | assert.is((await analyze(bundle, { filter: hasMatch })).modules.length, 1) |
| 131 | }) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…