Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/test/e2e/loginPage.test.ts

15 lines
467 B
TypeScript

import { test, expect } from "@playwright/test"
import { CODE_SERVER_ADDRESS } from "../utils/constants"
test.describe("login page", () => {
test.beforeEach(async ({ page }) => {
// TODO@jsjoeio reset context somehow
await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "networkidle" })
})
test("should see the login page", async ({ page }) => {
// It should send us to the login page
expect(await page.title()).toBe("code-server login")
})
})