2

This does not seem to work with Karma and Angular2.

describe.only("MyComp"), () => {
...

Any ideas how to achieve?

alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195
Stephan Kristyn
  • 15,015
  • 14
  • 88
  • 147

1 Answers1

2

describe.only is how exclusive/focused tests are marked in Mocha, not Jasmine.

In Jasmine, focused tests are achieved via fdescribe and fit.

alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195