Reputation: 157
The cypress folder isn't generating, I've tried npx cypress open
, ./node_modules/.bin/cypress open
and it's still not generating.
Also uninstalled and reinstalled cypress multiple times, clearing the cypress folder in %appdata% every time, but it still won't generate. Any ideas?
This is all that generates
Upvotes: 2
Views: 3203
Reputation: 18650
You have to first initialise the project using npm init
.
Then install cypress using npm install cypress
, as of the today the current version is 10.3.0, that should be installed.
Then You have to run the command npx cypress open
, then you should see a window like this:
Upvotes: 6