(terminal: Terminal, data: string)
| 8 | import { timeout } from 'vs/base/common/async'; |
| 9 | |
| 10 | function writeP(terminal: Terminal, data: string): Promise<void> { |
| 11 | return new Promise(r => terminal.write(data, r)); |
| 12 | } |
| 13 | |
| 14 | describe('SearchLineCache', () => { |
| 15 | let terminal: Terminal; |
no test coverage detected