()
| 23 | * @returns {MultiCompiler} compiler |
| 24 | */ |
| 25 | const createCompiler = () => { |
| 26 | const compiler = { |
| 27 | hooks: { |
| 28 | watchClose: new SyncHook([]) |
| 29 | } |
| 30 | }; |
| 31 | return /** @type {MultiCompiler} */ (compiler); |
| 32 | }; |
| 33 | |
| 34 | describe("MultiWatching", () => { |
| 35 | /** @type {Watching[]} */ |
no outgoing calls
no test coverage detected