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