()
| 23 | } |
| 24 | |
| 25 | async hideProblemsView(): Promise<any> { |
| 26 | await this.quickAccess.runCommand('workbench.actions.view.problems'); |
| 27 | await this.code.waitForElement(Problems.PROBLEMS_VIEW_SELECTOR, el => !el); |
| 28 | } |
| 29 | |
| 30 | async waitForProblemsView(): Promise<void> { |
| 31 | await this.code.waitForElement(Problems.PROBLEMS_VIEW_SELECTOR); |