2021-04-01 17:57:44 +00:00
|
|
|
/// <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-01 21:52:46 +00:00
|
|
|
await jestPlaywright.resetBrowser()
|
|
|
|
await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "networkidle" })
|
2021-01-28 18:48:57 +00:00
|
|
|
})
|
|
|
|
|
2021-02-02 20:58:51 +00:00
|
|
|
it("should be able to login", async () => {
|
2021-01-28 18:48:57 +00:00
|
|
|
// Type in password
|
2021-02-12 19:08:34 +00:00
|
|
|
await page.fill(".password", PASSWORD)
|
2021-01-28 18:48:57 +00:00
|
|
|
// Click the submit button and login
|
|
|
|
await page.click(".submit")
|
2021-04-01 21:52:46 +00:00
|
|
|
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()
|
|
|
|
})
|
|
|
|
})
|