Cypress - Solutions-Needed/solutions-needed GitHub Wiki
Cypress is a tool for developing end to end tests. In order to start creating new test for the project, you need to complete the following steps:
1- Install dependencies for the project: yarn install
2- Go to cypress/integration/ folder inside de project
3- Right click on the folder and select "New File"
4- Finally, start coding your test.
Note: You need to run Cypress and the project in different terminals, so:
-
Run: In the first terminal "yarn dev" and in the other "yarn cypress".
-
Cypress launcher will open, so just click the test that you want to run.