OLD | NEW |
1 ### 0.12.0-beta.7 | 1 ### 0.12.0-beta.7 |
2 | 2 |
3 * Browser tests can now load assets by making HTTP requests to the corresponding | 3 * Browser tests can now load assets by making HTTP requests to the corresponding |
4 relative URLs. | 4 relative URLs. |
5 | 5 |
| 6 * Add support for running tests on Dartium. |
| 7 |
6 ### 0.12.0-beta.6 | 8 ### 0.12.0-beta.6 |
7 | 9 |
8 * Add the ability to run multiple test suites concurrently. By default a number | 10 * Add the ability to run multiple test suites concurrently. By default a number |
9 of concurrent test suites will be run equal to half the machine's processors; | 11 of concurrent test suites will be run equal to half the machine's processors; |
10 this can be controlled with the `--concurrency` flag. | 12 this can be controlled with the `--concurrency` flag. |
11 | 13 |
12 * Expose load errors as test failures rather than having them kill the entire | 14 * Expose load errors as test failures rather than having them kill the entire |
13 process. | 15 process. |
14 | 16 |
15 * Add support for running tests on Firefox. | 17 * Add support for running tests on Firefox. |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 193 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
192 `expectAsyncUntil1` and `expectAsyncUntil2` | 194 `expectAsyncUntil1` and `expectAsyncUntil2` |
193 * `TestCase`: | 195 * `TestCase`: |
194 * Removed properties: `setUp`, `tearDown`, `testFunction` | 196 * Removed properties: `setUp`, `tearDown`, `testFunction` |
195 * `enabled` is now get-only | 197 * `enabled` is now get-only |
196 * Removed methods: `pass`, `fail`, `error` | 198 * Removed methods: `pass`, `fail`, `error` |
197 * `interactive_html_config.dart` has been removed. | 199 * `interactive_html_config.dart` has been removed. |
198 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 200 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
199 `solo_group` now throw a `StateError` if called while tests are running. | 201 `solo_group` now throw a `StateError` if called while tests are running. |
200 * `rerunTests` has been removed. | 202 * `rerunTests` has been removed. |
OLD | NEW |