cypress run test code example
Example 1: cypress run specific test
cypress run --spec 'path/to/files/*.spec.js'
Example 2: run cypress
./node_modules/.bin/cypress open
Example 3: cypress run specific test
cypress run --spec path/to/file.spec.js
Example 4: hot to start cypress
npm install cypress
./node_modules/.bin/cypress open
Example 5: cypress run all files in folder
I think you're looking for --spec path/to/folder*.js
would run all .js files in all folders under the "subsetA" folder in cypress/integration.