(predicate, timeoutMs, label)
| 286 | ) |
| 287 | }, |
| 288 | async waitForVisibleRows(predicate, timeoutMs, label) { |
| 289 | const visibleTextSnapshot = await this.waitForVisibleText( |
| 290 | text => predicate(readVisibleRows(text)), |
| 291 | timeoutMs, |
| 292 | label, |
| 293 | ) |
| 294 | return readVisibleRows(visibleTextSnapshot) |
| 295 | }, |
| 296 | send(text) { |
| 297 | proc.stdin.write(text) |
| 298 | }, |
nothing calls this directly
no test coverage detected