()
| 10 | * @returns {Watching} watching |
| 11 | */ |
| 12 | const createWatching = () => |
| 13 | /** @type {Watching} */ ( |
| 14 | /** @type {unknown} */ ({ |
| 15 | invalidate: jest.fn(), |
| 16 | suspend: jest.fn(), |
| 17 | resume: jest.fn(), |
| 18 | close: jest.fn() |
| 19 | }) |
| 20 | ); |
| 21 | |
| 22 | /** |
| 23 | * @returns {MultiCompiler} compiler |
no test coverage detected