Protractor - How to exclude spec file in the config file?
You can exclude
the spec's by adding them in the exclude tag in you conf.js file. You can also add patterns to exclude many test scripts with similar names. Here's how to do it -
exclude: ['Idontwantyou.test.js'],
More info can be found here. Hope this helps. If that link is broken, search the config file for "exclude".