(options, showAll = true, showHooks = false)
| 1 | class WebpackCLITestPlugin { |
| 2 | constructor(options, showAll = true, showHooks = false) { |
| 3 | this.opts = options; |
| 4 | this.showAll = showAll; |
| 5 | this.showHooks = showHooks; |
| 6 | } |
| 7 | |
| 8 | apply(compiler) { |
| 9 | compiler.hooks.done.tap("webpack-cli Test Plugin", () => { |
nothing calls this directly
no outgoing calls
no test coverage detected