-
Notifications
You must be signed in to change notification settings - Fork 0
Mocha continue after failure #51
Comments
This is why:
(see This was the intended behavior because I assumed that, once an early test fails (e.g., you're logged out), the subsequent ones would fail too. You're totally right, though, that this assumption doesn't hold if we're trying to run both Amazon and Google tests. I see the two easiest options as:
|
As a side note, the |
Ahhh. Then I think we can just remove the "run all diagnostics" functionality and be done with it. Not sure if by having to refresh the page in-between you mean what was fixed in 252b668? You should be able to just click the appropriate button to run/rerun whichever test you want. |
If both are run at the same time, they may interfere with each other (as detailed in #51): the failure of one may block the other. Instead, users have to explicitly start one or the other. If they want to run both, they can just launch them sequentially.
Sounds good. Done in 8bc4704
Cool! Yeah, I'm not sure exactly what I had in mind, but glad no further action is necessary. 😃 |
Is it just me, or does Mocha terminate completely once it fails a single test? This breaks the "run all diagnostics" functionality since it won't run any Amazon tests after failing any Google test. Mocha is supposed to run all tests and report numbers of passes and failures, right?
The text was updated successfully, but these errors were encountered: