I have a scenario where I have 10 spec files all named *********.test.js
. I need to run tests on all 9 of these files, excluding the file named Idontwantyou.test.js
.
Currently, I am locating my spec files in the config.file
using:
specs: ['*.test.js']
- this will execute tests on all 10 files.
How can I modify it to run tests on all 9 test files and exclude the one named Idontwantyou.test.js
?