(ctx: Vitest)
| 22 | private finishedTests = new Set<TestCase['id']>() |
| 23 | |
| 24 | onInit(ctx: Vitest): void { |
| 25 | super.onInit(ctx) |
| 26 | |
| 27 | if (this.isTTY) { |
| 28 | this.renderer = new WindowRenderer({ |
| 29 | logger: ctx.logger, |
| 30 | getWindow: () => this.createSummary(), |
| 31 | }) |
| 32 | |
| 33 | this.ctx.onClose(() => this.renderer?.stop()) |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | // Ignore default logging of base reporter |
| 38 | printTestModule(): void {} |
nothing calls this directly
no test coverage detected