This does not seem to work with Karma and Angular2.
describe.only("MyComp"), () => {
...
Any ideas how to achieve?
This does not seem to work with Karma and Angular2.
describe.only("MyComp"), () => {
...
Any ideas how to achieve?
describe.only
is how exclusive/focused tests are marked in Mocha, not Jasmine.
In Jasmine, focused tests are achieved via fdescribe
and fit
.