My test suite is quite extensive, with over 250 tests and more yet to be added. I am encountering an issue with the fit
function where it passes the end of the test, then continues "running through" while skipping the remaining tests, resulting in a lengthy process. This behavior is causing an exception in jasmine-cover
, preventing the browser from closing and impeding the retrieval of test results.
Although I attempted using fdescribe
along with fit
, the problem persists as it still takes significant time to proceed through and bypass other tests.
Hence, I have a couple of queries:
What exactly happens in the background during the lengthy skip of tests?
How can I obtain test results while utilizing
fit
within this particular test suite?