| OLD | NEW |
| 1 ## 0.12.5 | 1 ## 0.12.5 |
| 2 | 2 |
| 3 * Allow `setUp()` and `tearDown()` to be called multiple times within the same | 3 * Allow `setUp()` and `tearDown()` to be called multiple times within the same |
| 4 group. | 4 group. |
| 5 | 5 |
| 6 * When a `tearDown()` callback runs after a signal has been caught, it can now | 6 * When a `tearDown()` callback runs after a signal has been caught, it can now |
| 7 schedule out-of-band asynchronous callbacks normally rather than having them | 7 schedule out-of-band asynchronous callbacks normally rather than having them |
| 8 throw exceptions. | 8 throw exceptions. |
| 9 | 9 |
| 10 * Don't show package warnings when compiling tests with dart2js. This was |
| 11 accidentally enabled in 0.12.2, but was never intended. |
| 12 |
| 10 ## 0.12.4+9 | 13 ## 0.12.4+9 |
| 11 | 14 |
| 12 * If a `tearDown()` callback throws an error, outer `tearDown()` callbacks are | 15 * If a `tearDown()` callback throws an error, outer `tearDown()` callbacks are |
| 13 still executed. | 16 still executed. |
| 14 | 17 |
| 15 ## 0.12.4+8 | 18 ## 0.12.4+8 |
| 16 | 19 |
| 17 * Don't compile tests to JavaScript when running via `pub serve` on Dartium or | 20 * Don't compile tests to JavaScript when running via `pub serve` on Dartium or |
| 18 content shell. | 21 content shell. |
| 19 | 22 |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 314 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 312 `expectAsyncUntil1` and `expectAsyncUntil2` | 315 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 313 * `TestCase`: | 316 * `TestCase`: |
| 314 * Removed properties: `setUp`, `tearDown`, `testFunction` | 317 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 315 * `enabled` is now get-only | 318 * `enabled` is now get-only |
| 316 * Removed methods: `pass`, `fail`, `error` | 319 * Removed methods: `pass`, `fail`, `error` |
| 317 * `interactive_html_config.dart` has been removed. | 320 * `interactive_html_config.dart` has been removed. |
| 318 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 321 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 319 `solo_group` now throw a `StateError` if called while tests are running. | 322 `solo_group` now throw a `StateError` if called while tests are running. |
| 320 * `rerunTests` has been removed. | 323 * `rerunTests` has been removed. |
| OLD | NEW |