Misleading status message when using `fit` or `fdescribe`
See original GitHub issueThe output states to have run all available tests, but we were running into “silently failing” tests as no logs are present to explicitly state the number of tests run.
This is the output we have when running all our tests without any fit
or fdescribe
specs:
Executed 473 of 473 SUCCESS (0.443 secs / 0 secs)
Now, using a single fit
on one of the specs:
Executed 473 of 473 SUCCESS (0.454 secs / 0 secs)
If I let the fit
ed test fail explicitly, this is the output
Executed 473 of 473 (1 FAILED) (0.397 secs / 0 secs)
Having fdescribe
causes the very same output as above (Both scenarios, with and without failing tests).
We would except an output similar to when xit
or xdescribe
is present:
(with 1 xit
in place)
Executed 472 of 473 (skipped 1) SUCCESS (0.49 secs / 0 secs)
jasmine@3.1.0
jasmine-core@3.1.0
jasmin-local-storage@1.0.0
karma-jasmine@1.1.1
Hit me up if there’s additional information required 😃
Issue Analytics
- State:
- Created 5 years ago
- Reactions:15
- Comments:14 (1 by maintainers)
Top GitHub Comments
Maybe people keep posting and add “noise” so that @dignifiedquire or other users with write-access do read and bump the version 😃
@johnjbarton Any ETA on a release? This bug is stopping us from using Jasmine 3, and the fix is already merged.