2021-06-22 16:34:44 -05:00
|
|
|
import { describe, test, expect } from "./baseFixture"
|
2021-04-01 11:48:23 -07: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
|
2022-02-15 14:51:42 -07:00
|
|
|
describe("globalSetup", true, [], () => {
|
2021-06-10 15:09:38 +02:00
|
|
|
test("should keep us logged in using the storageState", async ({ codeServerPage }) => {
|
2021-04-05 15:18:13 -07:00
|
|
|
// Make sure the editor actually loaded
|
2021-06-10 15:09:38 +02:00
|
|
|
expect(await codeServerPage.isEditorVisible()).toBe(true)
|
2021-04-01 11:48:23 -07:00
|
|
|
})
|
|
|
|
})
|