| OLD | NEW |
| 1 ### 0.12.0-beta.5 | 1 ### 0.12.0-beta.5 |
| 2 | 2 |
| 3 * Add a `--pub-serve` flag that runs tests against a `pub serve` instance. | 3 * Add a `--pub-serve` flag that runs tests against a `pub serve` instance. |
| 4 **This feature is only supported on Dart `1.9.2` and higher.** | 4 **This feature is only supported on Dart `1.9.2` and higher.** |
| 5 | 5 |
| 6 * When the test runner is killed prematurely, it will clean up its temporary |
| 7 directories and give the current test a chance to run its `tearDown` logic. |
| 8 |
| 6 ### 0.12.0-beta.4 | 9 ### 0.12.0-beta.4 |
| 7 | 10 |
| 8 * Fix a package-root bug. | 11 * Fix a package-root bug. |
| 9 | 12 |
| 10 ### 0.12.0-beta.3 | 13 ### 0.12.0-beta.3 |
| 11 | 14 |
| 12 * Add support for `shelf` `0.6.0`. | 15 * Add support for `shelf` `0.6.0`. |
| 13 | 16 |
| 14 * Fix a "failed to load" bug on Windows. | 17 * Fix a "failed to load" bug on Windows. |
| 15 | 18 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 175 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 173 `expectAsyncUntil1` and `expectAsyncUntil2` | 176 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 174 * `TestCase`: | 177 * `TestCase`: |
| 175 * Removed properties: `setUp`, `tearDown`, `testFunction` | 178 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 176 * `enabled` is now get-only | 179 * `enabled` is now get-only |
| 177 * Removed methods: `pass`, `fail`, `error` | 180 * Removed methods: `pass`, `fail`, `error` |
| 178 * `interactive_html_config.dart` has been removed. | 181 * `interactive_html_config.dart` has been removed. |
| 179 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 182 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 180 `solo_group` now throw a `StateError` if called while tests are running. | 183 `solo_group` now throw a `StateError` if called while tests are running. |
| 181 * `rerunTests` has been removed. | 184 * `rerunTests` has been removed. |
| OLD | NEW |