Archived
1
0

Merge pull request #2773 from cdr/upgrade-vscode-1.53

feat(vscode): update to version 1.53.2
This commit is contained in:
Joe Previte
2021-03-05 14:03:10 -07:00
committed by GitHub
1916 changed files with 84281 additions and 66671 deletions

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))