| OLD | NEW |
| 1 ### 0.12.0-beta.6 |
| 2 |
| 3 * Add the ability to run multiple test suites concurrently. By default a number |
| 4 of concurrent test suites will be run equal to half the machine's processors; |
| 5 this can be controlled with the `--concurrency` flag. |
| 6 |
| 1 ### 0.12.0-beta.5 | 7 ### 0.12.0-beta.5 |
| 2 | 8 |
| 3 * Add a `--pub-serve` flag that runs tests against a `pub serve` instance. | 9 * 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.** | 10 **This feature is only supported on Dart `1.9.2` and higher.** |
| 5 | 11 |
| 6 * When the test runner is killed prematurely, it will clean up its temporary | 12 * 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. | 13 directories and give the current test a chance to run its `tearDown` logic. |
| 8 | 14 |
| 9 ### 0.12.0-beta.4 | 15 ### 0.12.0-beta.4 |
| 10 | 16 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 181 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 176 `expectAsyncUntil1` and `expectAsyncUntil2` | 182 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 177 * `TestCase`: | 183 * `TestCase`: |
| 178 * Removed properties: `setUp`, `tearDown`, `testFunction` | 184 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 179 * `enabled` is now get-only | 185 * `enabled` is now get-only |
| 180 * Removed methods: `pass`, `fail`, `error` | 186 * Removed methods: `pass`, `fail`, `error` |
| 181 * `interactive_html_config.dart` has been removed. | 187 * `interactive_html_config.dart` has been removed. |
| 182 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 188 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 183 `solo_group` now throw a `StateError` if called while tests are running. | 189 `solo_group` now throw a `StateError` if called while tests are running. |
| 184 * `rerunTests` has been removed. | 190 * `rerunTests` has been removed. |
| OLD | NEW |