2021-06-10 15:09:38 +02:00
|
|
|
import { storageState } from "../utils/constants"
|
|
|
|
import { test, expect } from "./baseFixture"
|
2021-04-01 20:48:23 +02:00
|
|
|
|
|
|
|
// This test is to make sure the globalSetup works as expected
|
2021-06-10 15:09:38 +02:00
|
|
|
// meaning globalSetup ran and stored the storageState
|
2021-04-13 21:02:52 +02:00
|
|
|
test.describe("globalSetup", () => {
|
2021-06-10 15:09:38 +02:00
|
|
|
test.use({
|
|
|
|
storageState,
|
2021-04-21 23:31:15 +02:00
|
|
|
})
|
2021-06-10 15:09:38 +02:00
|
|
|
|
|
|
|
test("should keep us logged in using the storageState", async ({ codeServerPage }) => {
|
2021-04-06 00:18:13 +02:00
|
|
|
// Make sure the editor actually loaded
|
2021-06-10 15:09:38 +02:00
|
|
|
expect(await codeServerPage.isEditorVisible()).toBe(true)
|
2021-04-01 20:48:23 +02:00
|
|
|
})
|
|
|
|
})
|