You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 10, 2024. It is now read-only.
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