This repository has been archived by the owner on Feb 22, 2018. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(jasmine): don't swallow exceptions in afterEach
It turns out that `tearDown()` in `unittest/unittest.dart` swallows exceptions (at least in the current version.) This means that exceptions thrown in our `afterEach` functions are silently swallowed and cause our tests to pass incorrectly. As an example, the 24 tests that were updated in commit d663667 should have been failing with the exception `Unflushed requests: 1` but did not. This change makes it so that these exceptions do show up.
- Loading branch information