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