(s: string)
| 3 | |
| 4 | // Strip ANSI color codes so assertions run on plain text. |
| 5 | const plain = (s: string): string => s.replace(/\x1b\[[0-9;]*m/g, '') |
| 6 | |
| 7 | describe('CLI renders the `zn` command name, never legacy `zen` (#126)', () => { |
| 8 | it('USAGE, examples, and hints use `zn`', () => { |