(s: string, width: number)
| 8307 | } |
| 8308 | |
| 8309 | function pad(s: string, width: number): string { |
| 8310 | if (s.length >= width) return s; |
| 8311 | return s + ' '.repeat(width - s.length); |
| 8312 | } |
| 8313 | |
| 8314 | function createTestCodeCommand(deps: TestDeps): Command { |
| 8315 | const code = new Command('code').description('Inspect and edit generated test code'); |
no outgoing calls
no test coverage detected