da4de439e0
This uses the current dev build by default but can be overidden with CODE_SERVER_TEST_ENTRY (for example to test a release or some other version). Each instance has a separate state directory. This should make parallelization work. This also means you are no longer required to specify the password and address yourself (or the extension directory once we add a test extension). `yarn test:e2e` should just work as-is. Lastly, it means the tests are no longer subject to yarn watch randomly restarting.
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import { storageState } from "../utils/constants"
|
|
import { describe, test, expect } from "./baseFixture"
|
|
|
|
describe("CodeServer", () => {
|
|
test.use({
|
|
storageState,
|
|
})
|
|
|
|
test("should navigate to home page", async ({ codeServerPage }) => {
|
|
// We navigate codeServer before each test
|
|
// and we start the test with a storage state
|
|
// which means we should be logged in
|
|
// so it should be on the address
|
|
const url = codeServerPage.page.url()
|
|
// We use match because there may be a / at the end
|
|
// so we don't want it to fail if we expect http://localhost:8080 to match http://localhost:8080/
|
|
expect(url).toMatch(await codeServerPage.address())
|
|
})
|
|
|
|
test("should always see the code-server editor", async ({ codeServerPage }) => {
|
|
expect(await codeServerPage.isEditorVisible()).toBe(true)
|
|
})
|
|
|
|
test("should always have a connection", async ({ codeServerPage }) => {
|
|
expect(await codeServerPage.isConnected()).toBe(true)
|
|
})
|
|
|
|
test("should show the Integrated Terminal", async ({ codeServerPage }) => {
|
|
await codeServerPage.focusTerminal()
|
|
expect(await codeServerPage.page.isVisible("#terminal")).toBe(true)
|
|
})
|
|
})
|