...

/

Setting Up a New Project

Setting Up a New Project

Learn how you can get Cypress installed on your machine to get up and running with end-to-end testing.

To save some time, we’re going to test an existing application, so we only need to care about Cypress. And what better way to test out Cypress than running it against its own site, cypress.io.

The front page of the official site of Cypress: cypress.io
The front page of the official site of Cypress: cypress.io

To be able to use Cypress, we will need an NPM project nonetheless. This is where we will store all our assets related to Cypress.


Creating a new NPM project

Even though our application is up and running, we will need a new NPM project to use Cypress. This is where we will write all ...