2021-04-02 00:57:44 +07:00
|
|
|
/// <reference types="jest-playwright-preset" />
|
2021-03-10 06:33:01 +07:00
|
|
|
import { CODE_SERVER_ADDRESS, PASSWORD } from "../utils/constants"
|
2021-01-29 01:48:57 +07:00
|
|
|
|
|
|
|
describe("login", () => {
|
|
|
|
beforeEach(async () => {
|
2021-04-03 06:49:01 +07:00
|
|
|
await jestPlaywright.resetBrowser({
|
|
|
|
logger: {
|
|
|
|
isEnabled: (name, severity) => name === "browser",
|
|
|
|
log: (name, severity, message, args) => console.log(`${name} ${message}`),
|
|
|
|
},
|
|
|
|
})
|
2021-04-02 04:52:46 +07:00
|
|
|
await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "networkidle" })
|
2021-01-29 01:48:57 +07:00
|
|
|
})
|
|
|
|
|
2021-02-03 03:58:51 +07:00
|
|
|
it("should be able to login", async () => {
|
2021-01-29 01:48:57 +07:00
|
|
|
// Type in password
|
2021-02-13 02:08:34 +07:00
|
|
|
await page.fill(".password", PASSWORD)
|
2021-01-29 01:48:57 +07:00
|
|
|
// Click the submit button and login
|
|
|
|
await page.click(".submit")
|
2021-04-02 04:52:46 +07:00
|
|
|
await page.waitForLoadState("networkidle")
|
2021-01-29 01:48:57 +07:00
|
|
|
// See the editor
|
|
|
|
const codeServerEditor = await page.isVisible(".monaco-workbench")
|
|
|
|
expect(codeServerEditor).toBeTruthy()
|
|
|
|
})
|
|
|
|
})
|