code-server/test/e2e/logout.test.ts

21 lines
857 B
TypeScript
Raw Normal View History

import { describe, test, expect } from "./baseFixture"
2021-03-17 23:23:17 +00:00
describe("logout", true, () => {
test("should be able logout", async ({ codeServerPage }) => {
2021-03-17 23:23:17 +00:00
// Click the Application menu
await codeServerPage.page.click("[aria-label='Application Menu']")
2021-03-17 23:23:17 +00:00
// See the Log out button
const logoutButton = "a.action-menu-item span[aria-label='Log out']"
expect(await codeServerPage.page.isVisible(logoutButton)).toBe(true)
2021-03-17 23:23:17 +00:00
await codeServerPage.page.hover(logoutButton)
2021-03-17 23:23:17 +00:00
2021-04-02 19:32:24 +00:00
// Recommended by Playwright for async navigation
// https://github.com/microsoft/playwright/issues/1987#issuecomment-620182151
await Promise.all([codeServerPage.page.waitForNavigation(), codeServerPage.page.click(logoutButton)])
const currentUrl = codeServerPage.page.url()
expect(currentUrl).toBe(`${await codeServerPage.address()}/login`)
2021-03-17 23:23:17 +00:00
})
})