I am developing an application based on TDD.
For the server-side everything is fine as Python test runner are great.
For JS, I start using mocha which is also great.
I have wrote my first tests with Karma and Angular Scenario Runner and it also great.
The problem is that soon after starting to use Angular Scenario Runner in real life I ended up with 60 e2s tests. Running all tests takes 1 minute.
Now, when I write a new test, each time I want to check the test, I will have to wait up to 60 seconds.
In Mocka there is this option to running only a specific test with .only http://visionmedia.github.io/mocha/#exclusive-tests
It looks like Angular Scenario Runner is briefly documented, but somehow mimics Jasmine.
Looking at Angular Scenario Runner code I could only find the xit definition, for skipping a test.
Is there a trick to ask Angular Scenario Runner to only run a subset of the test?
I have implemented an xdescribe blank method to skip a whole suite... but this is feasible for the long term.
Many thanks!