DEV Community

Discussion on: I used Cypress as an Xbox web scraper and I regret nothing

Collapse
 
bluefoxbandido profile image
Adam Parker

I'm having a hard time finding the cypress.json file

Also the integration folder that is supposed to be in the cypress folder

It's probably operator error, but I'm lost.

Collapse
 
annaspies profile image
Anna

Hey, you need to run these two steps in the root of your repo:

  1. npm install cypress --save
  2. Once it's installed, run ./node_modules/.bin/cypress open.
Collapse
 
annaspies profile image
Anna

That will initialize cypress in that project, and create all of those files. Let me know if that still doesn't work for you!