()
| 59 | } |
| 60 | |
| 61 | async gotoHome() { |
| 62 | await this.page.goto(`${this.baseURL}/sql-editor`); |
| 63 | await this.page.keyboard.press("Escape").catch(() => {}); |
| 64 | await this.page.waitForLoadState("networkidle").catch(() => {}); |
| 65 | } |
| 66 | |
| 67 | async gotoWithDb(projectId: string, instanceId: string, dbName: string) { |
| 68 | // Direct DB URL avoids stale editor state from prior navigations. |
no test coverage detected