Gwendolyn Van Hove
Gwendolyn Van Hove
Customizing the pretty printer is something we've been thinking about for a while, but haven't figured out a good way to do it. Where the pretty printer lives right now...
This sounds reasonable and I'd be happy to review a Pull Request to add an awaitable `asyncTick` function. This should even be a bit easier now that Jasmine has some...
This functionality seems like it would be hard to implement in a general way, and probably also hard to use correctly. If Jasmine were to return the status of an...
Please also check out the new [`withContext`](https://jasmine.github.io/api/edge/matchers.html#withContext) helper for expectations (and async expectations), as I think this should help differentiate your expectations. Hope this helps. Thanks for using Jasmine!
@elliot-nelson this seems like a different use case than the original poster had in mind. I think if you're writing a custom matcher for Jasmine, I would test it by...
If you primarily want to suppress further expectation failure messages from showing up, you might want to look into the [stopSpecOnExpectationFailure](https://jasmine.github.io/setup/nodejs.html#configuration) configuration option.
This is an interesting concept. I'm not sure I understand the circumstances in which it would be useful for debugging a test failure though. I'm especially thinking of situations around...
This looks like a pretty good start. It looks like there are a couple of test failures in Travis to take a look at. I'd also like to see some...
Finding the origin of a function is a bit harder than it seems at first, especially once things start becoming asynchronous. In order to get the file and line number...
If a failure occurs outside of the execution of a specific test (`it`), like say in a `beforeAll`, Jasmine will report that as a Suite error, as you're seeing in...