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 * Add support for running tests on Firefox. |
| 8 |
7 ### 0.12.0-beta.5 | 9 ### 0.12.0-beta.5 |
8 | 10 |
9 * Add a `--pub-serve` flag that runs tests against a `pub serve` instance. | 11 * Add a `--pub-serve` flag that runs tests against a `pub serve` instance. |
10 **This feature is only supported on Dart `1.9.2` and higher.** | 12 **This feature is only supported on Dart `1.9.2` and higher.** |
11 | 13 |
12 * When the test runner is killed prematurely, it will clean up its temporary | 14 * When the test runner is killed prematurely, it will clean up its temporary |
13 directories and give the current test a chance to run its `tearDown` logic. | 15 directories and give the current test a chance to run its `tearDown` logic. |
14 | 16 |
15 ### 0.12.0-beta.4 | 17 ### 0.12.0-beta.4 |
16 | 18 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 183 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
182 `expectAsyncUntil1` and `expectAsyncUntil2` | 184 `expectAsyncUntil1` and `expectAsyncUntil2` |
183 * `TestCase`: | 185 * `TestCase`: |
184 * Removed properties: `setUp`, `tearDown`, `testFunction` | 186 * Removed properties: `setUp`, `tearDown`, `testFunction` |
185 * `enabled` is now get-only | 187 * `enabled` is now get-only |
186 * Removed methods: `pass`, `fail`, `error` | 188 * Removed methods: `pass`, `fail`, `error` |
187 * `interactive_html_config.dart` has been removed. | 189 * `interactive_html_config.dart` has been removed. |
188 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 190 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
189 `solo_group` now throw a `StateError` if called while tests are running. | 191 `solo_group` now throw a `StateError` if called while tests are running. |
190 * `rerunTests` has been removed. | 192 * `rerunTests` has been removed. |
OLD | NEW |