(compiler)
| 6 | } |
| 7 | |
| 8 | apply(compiler) { |
| 9 | compiler.hooks.done.tap("testPlugin", () => { |
| 10 | if (this.isInEnvironment) { |
| 11 | console.log("PASS"); |
| 12 | } else { |
| 13 | console.log("FAIL"); |
| 14 | } |
| 15 | }); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | module.exports = (env) => ({ |
nothing calls this directly
no outgoing calls
no test coverage detected