(message: string, color: AnsiColors | undefined)
| 496 | } |
| 497 | |
| 498 | #format(message: string, color: AnsiColors | undefined): string { |
| 499 | if (!this.#groupColor || this.#activeSpinner?.isSpinning) { |
| 500 | return this.#colorize(message, color); |
| 501 | } |
| 502 | return transformLines( |
| 503 | message, |
| 504 | line => |
| 505 | `${this.#colorize('│', this.#groupColor)} ${this.#colorize(line, color)}`, |
| 506 | ); |
| 507 | } |
| 508 | |
| 509 | #colorize(text: string, color: AnsiColors | undefined): string { |
| 510 | if (!color) { |
no test coverage detected