(page: Page, pageId: PageId)
| 56 | // This is a hack to work around the fact that the page isn't always hydrated |
| 57 | // with the new content when the URL changes. |
| 58 | const waitUntilHydrated = async (page: Page, pageId: PageId) => { |
| 59 | await page.waitForURL(links[pageId]); |
| 60 | await expect(page).toHaveTitle(titles[pageId]); |
| 61 | await waitUntilListening(page); |
| 62 | }; |
| 63 | |
| 64 | const completeMultifileLabWithHotkey = async ({ |
| 65 | browserName, |
no test coverage detected