2021-04-14 02:02:52 +07:00
|
|
|
import { test, expect } from "@playwright/test"
|
2021-04-02 01:48:23 +07:00
|
|
|
import { CODE_SERVER_ADDRESS, STORAGE } from "../utils/constants"
|
|
|
|
|
|
|
|
// This test is to make sure the globalSetup works as expected
|
|
|
|
// meaning globalSetup ran and stored the storageState in STORAGE
|
2021-04-14 02:02:52 +07:00
|
|
|
test.describe("globalSetup", () => {
|
|
|
|
// Create a new context with the saved storage state
|
|
|
|
// so we don't have to logged in
|
|
|
|
const storageState = JSON.parse(STORAGE) || {}
|
|
|
|
const options = {
|
|
|
|
contextOptions: {
|
2021-04-03 06:49:01 +07:00
|
|
|
storageState,
|
2021-04-14 02:02:52 +07:00
|
|
|
},
|
|
|
|
}
|
|
|
|
test("should keep us logged in using the storageState", options, async ({ page }) => {
|
2021-04-02 04:52:46 +07:00
|
|
|
await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "networkidle" })
|
2021-04-06 05:18:13 +07:00
|
|
|
// Make sure the editor actually loaded
|
|
|
|
expect(await page.isVisible("div.monaco-workbench"))
|
2021-04-02 01:48:23 +07:00
|
|
|
})
|
|
|
|
})
|