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

23 lines
782 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.resetContext()
await page.goto(CODE_SERVER_ADDRESS)
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")
// For some reason, it wasn't waiting for the click and navigation before checking
// so adding a timeout ensures that we allow the editor time to load
await page.waitForTimeout(1000)
2021-01-28 18:48:57 +00:00
// See the editor
const codeServerEditor = await page.isVisible(".monaco-workbench")
expect(codeServerEditor).toBeTruthy()
})
})