1npm install cypress //takes about 3-5 minutes for entire process
2./node_modules/.bin/cypress open // just cypress run wont work
1I think you're looking for --spec path/to/folder/*.js
2
3You can run all the tests in a folder, or even in all subfolders of a folder
4
5example: --spec cypresss/integration/subsetA/**/*.js
6would run all .js files in all folders under the "subsetA" folder in cypress/integration.
7