How to exclude certain specs to be run in the folder when npx cypress run is executed for example please see the image
I don't want to execute my spec which is in Marketing/Sales/sc1111.spec.ts but at the same time I want it to execute via the import statement mentioned in Finance/Verify/sc1111-main.spec.ts
is there anything that I can do in the folder level itself to stop it from running
asking this as I have 100's of folders that are going to be like this and I don't want to mess up the configuration file with excluding list so Please help me regarding this with your suggestions
There is a configuration option to exclude files
Configuration - e2e
Minimal reproducible example
If I set up a simple project with three spec files
then add
test-b.cy.js
to the exclude patternwhen I execute
yarn cypress run
, test-b.cy.js isn't run.