()
| 113 | }, |
| 114 | |
| 115 | async waitForInitialBreak() { |
| 116 | await this.waitFor(/break (?:on start )?in/i); |
| 117 | |
| 118 | if (isPreBreak(this.output)) { |
| 119 | await this.command('next', false); |
| 120 | return this.waitFor(/break in/); |
| 121 | } |
| 122 | }, |
| 123 | |
| 124 | get breakInfo() { |
| 125 | const output = this.output; |
nothing calls this directly
no test coverage detected
searching dependent graphs…