Archived
1
0

Spawn a code-server instance for each test suite

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.
This commit is contained in:
Asher
2021-06-22 16:34:44 -05:00
parent 49c44818d9
commit da4de439e0
14 changed files with 253 additions and 72 deletions

View File

@ -1,7 +1,7 @@
import { storageState } from "../utils/constants"
import { test, expect } from "./baseFixture"
import { describe, test, expect } from "./baseFixture"
test.describe("Open Help > About", () => {
describe("Open Help > About", () => {
test.use({
storageState,
})