Move js dependencies required for E2E tests into their own workspace #10013
Labels
P1
Medium priority
QA: Eng
Requires specialized QA by an engineer
Type: Infrastructure
Engineering infrastructure & tooling
Feature Description
In order to resolve js dependency conflicts, we need to separate dependencies used by different parts of our project and put them into separate workspaces. The first part of this process is to move js dependencies needed for E2E tests to run into a separate workspace.
Do not alter or remove anything below. The following sections will be managed by moderators only.
Acceptance criteria
package.json
file is updated to have theworkspaces
section with the only one workspace for E2E tests.Implementation Brief
package.json
file to have the newworkspaces
section using[ "tests/e2e" ]
as its value.package.json
file in thetests/e2e
folder. You can usenpm init -w ./tests/e2e
to do that.package.json
file and move all dependecies that are used in e2e tests to its own package by uninstalling them in the main package.json file and installing with-w ./tests/e2e
argument to specify the correct workspace.pacakge.json
file to proxy e2e commands to the correct workspace using thenpm run ... -w ./tests/e2e
approach.Test Coverage
QA Brief
Changelog entry
The text was updated successfully, but these errors were encountered: