(bufferService: IBufferService, trim: boolean)
| 250 | }); |
| 251 | describe('regression tests', function (): void { |
| 252 | function termContent(bufferService: IBufferService, trim: boolean): string[] { |
| 253 | const result = []; |
| 254 | for (let i = 0; i < bufferService.rows; ++i) result.push(bufferService.buffer.lines.get(i)!.translateToString(trim)); |
| 255 | return result; |
| 256 | } |
| 257 | |
| 258 | it('insertChars', async () => { |
| 259 | const bufferService = new MockBufferService(80, 30); |
no test coverage detected