code-server-2/test/e2e/login.test.ts

20 lines
629 B
TypeScript
Raw Normal View History

/// <reference types="jest-playwright-preset" />
2021-03-09 23:33:01 +00:00
import { CODE_SERVER_ADDRESS, PASSWORD } from "../utils/constants"
2021-01-28 18:48:57 +00:00
describe("login", () => {
beforeEach(async () => {
await jestPlaywright.resetBrowser()
await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "networkidle" })
2021-01-28 18:48:57 +00:00
})
it("should be able to login", async () => {
2021-01-28 18:48:57 +00:00
// Type in password
await page.fill(".password", PASSWORD)
2021-01-28 18:48:57 +00:00
// Click the submit button and login
await page.click(".submit")
await page.waitForLoadState("networkidle")
// Make sure the editor actually loaded
expect(await page.isVisible("div.monaco-workbench"))
2021-01-28 18:48:57 +00:00
})
})