Hey I'm trying to only run a single test with it.only like it's defined in here https://mochajs.org/#exclusive-tests, but both tests are running when i open up my test suite in the browser. Am I doing something wrong or is this feature not supported by ember-cli-mocha?
My test looks like:
describe('test it.only feature', function() {
it('should not run', function() {
expect(true).to.equal(true);
});
it.only('should run', function() {
expect(true).to.equal(true);
});
});
Update:
A workarround to this issue is to use the grep argument and paste in the test name. Like
http://localhost:7357/7159/tests/index.html?hidepassed&grep=should%20run
Thanks,
Thomas
Hey I'm trying to only run a single test with it.only like it's defined in here https://mochajs.org/#exclusive-tests, but both tests are running when i open up my test suite in the browser. Am I doing something wrong or is this feature not supported by ember-cli-mocha?
My test looks like:
Update:
A workarround to this issue is to use the grep argument and paste in the test name. Like
Thanks,
Thomas