| OLD | NEW |
| 1 ### 0.12.0-rc.2 |
| 2 |
| 3 * Allow Future matchers and `expectAsync` to prevent tests' |
| 4 `tearDown`s from completing. |
| 5 |
| 1 ### 0.12.0-rc.1 | 6 ### 0.12.0-rc.1 |
| 2 | 7 |
| 3 * Remove `handleExternalError`. This was never used in practice and its function | 8 * Remove `handleExternalError`. This was never used in practice and its function |
| 4 was unclear. | 9 was unclear. |
| 5 | 10 |
| 6 * If a test suite's `main()` method returns a `Future`, tests may be declared | 11 * If a test suite's `main()` method returns a `Future`, tests may be declared |
| 7 until that `Future` returns. | 12 until that `Future` returns. |
| 8 | 13 |
| 9 ### 0.12.0-rc.0 | 14 ### 0.12.0-rc.0 |
| 10 | 15 |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 270 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 266 `expectAsyncUntil1` and `expectAsyncUntil2` | 271 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 267 * `TestCase`: | 272 * `TestCase`: |
| 268 * Removed properties: `setUp`, `tearDown`, `testFunction` | 273 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 269 * `enabled` is now get-only | 274 * `enabled` is now get-only |
| 270 * Removed methods: `pass`, `fail`, `error` | 275 * Removed methods: `pass`, `fail`, `error` |
| 271 * `interactive_html_config.dart` has been removed. | 276 * `interactive_html_config.dart` has been removed. |
| 272 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 277 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 273 `solo_group` now throw a `StateError` if called while tests are running. | 278 `solo_group` now throw a `StateError` if called while tests are running. |
| 274 * `rerunTests` has been removed. | 279 * `rerunTests` has been removed. |
| OLD | NEW |