| 7 | const coreMount = vi.fn() |
| 8 | const coreUnmount = vi.fn() |
| 9 | const construct = vi.fn<(...args: Array<unknown>) => void>() |
| 10 | class Core { |
| 11 | mount = coreMount |
| 12 | unmount = coreUnmount |
| 13 | constructor(...args: Array<unknown>) { |
| 14 | construct(...args) |
| 15 | } |
| 16 | } |
| 17 | return { Core, construct, coreMount, coreUnmount } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected