The Desktop GUI is the react application that is rendered by Electron. This acts as the visual user interface you see when running: cypress open
.
The Desktop GUI has the following responsibilities:
- Allow users to log in through the Dashboard Service.
- Allow users to add and remove projects to be tested in Cypress in global mode.
- Initialize the server to run on a specific project.
- Allow users to choose a specific browser to run tests within.
- Display the list of specs of a running project.
- Initialize the run of a specific spec file or all spec files chosen by the user.
- Notify users of updates to Cypress and initialize update process.
- Set up projects to be recorded.
- Display recently recorded runs for the project.
- Display the resolved configuration of a running project.
- Display other project and user settings such as Node.js version, proxy settings, and experiments.
## from repo root
yarn build --scope @packages/desktop-gui
## from repo root
yarn build-prod --scope @packages/desktop-gui
NOTE: Currently, if you want to work on the code around logging in, viewing runs, or setting up new projects to record, this requires connecting to a locally running API server.
Our API server is only accessible to Cypress employees at the moment. If you want to work with the code, we recommend working within the Cypress tests for the Desktop-Gui. There are lots of tests mocking our API server around logging in, seeing runs, and setting up projects.
This watches and compiles all changes as you make them.
- Runs
*.js
and*.jsx
through babel and bundles with browserify intodist
- Compiles
*.scss
files intodist
## from repo root
yarn watch --scope @packages/desktop-gui
You can also run all of the Desktop GUI's tests locally. We don't really recommend this because it takes a long time, and we have this process optimized by load balancing the tests across multiple workers in CI.
It's usually easier to run the tests in the GUI, commit, and then see if anything broke elsewhere.
## from repo root
yarn workspace @packages/desktop-gui cypress:run
This project is tested with Cypress itself. It acts exactly like any other Cypress project.
## from repo root
yarn workspace @packages/desktop-gui cypress:open
Using cypress-react-unit-test you can run some of the component tests in this project. You MUST run from the root of the repo using absolute path, no need to start the server.
yarn dev --project ~/git/cypress/packages/desktop-gui/