In my repository, I have a setup using `playwright-jest` with multiple spec files for test suites. I need to skip one of the spec files without moving it from its current directory in the repo.
The default script in `package.json` is `"test": "jest -c jest.config.js"`. I know that I can run individual suites using `npm run test TestSuiteName.spec.ts`, and running `npm run test` without a file name will execute the entire Test Plan. However, how can I exclude just one (or a few) and run the rest?
I've searched for configuration flags but haven't found anything useful yet. So far, what has worked is using `describe.skip()` in that specific file as a workaround. But I don't want to modify code before every run.
Is there a better way to achieve this? Maybe through regex or an option flag in `jest.config`?