fix: goHome test after location change

This commit is contained in:
Joe Previte 2021-03-05 11:58:17 -07:00
parent 9cbf6926f2
commit e47eabf375
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -73,8 +73,11 @@ describe("go home", () => {
// In case the page takes a long time to load
await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "domcontentloaded" })
// Make sure the editor actually loaded
expect(await page.isVisible("div.monaco-workbench"))
// Click the Home menu
await page.click(".home-bar ul[aria-label='Home'] li")
await page.click("[aria-label='Application Menu']")
// See the Go Home button
const goHomeButton = "a.action-menu-item span[aria-label='Go Home']"
expect(await page.isVisible(goHomeButton))