mirror of https://git.tuxpa.in/a/code-server.git
16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
|
/// <reference types="jest-playwright-preset" />
|
||
|
|
||
|
import { CODE_SERVER_ADDRESS } from "../utils/constants"
|
||
|
|
||
|
describe("login page", () => {
|
||
|
beforeEach(async () => {
|
||
|
await jestPlaywright.resetContext()
|
||
|
await page.goto(CODE_SERVER_ADDRESS)
|
||
|
})
|
||
|
|
||
|
it("should see the login page", async () => {
|
||
|
// It should send us to the login page
|
||
|
expect(await page.title()).toBe("code-server login")
|
||
|
})
|
||
|
})
|