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

26 lines
837 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 () => {
2021-04-02 23:49:01 +00:00
await jestPlaywright.resetBrowser({
logger: {
isEnabled: (name, severity) => name === "browser",
log: (name, severity, message, args) => console.log(`${name} ${message}`),
},
})
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")
2021-01-28 18:48:57 +00:00
// See the editor
const codeServerEditor = await page.isVisible(".monaco-workbench")
expect(codeServerEditor).toBeTruthy()
})
})