| 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 and the Dartium content shell. | 6 * Add support for running tests on Dartium and the Dartium content shell. |
| 7 | 7 |
| 8 * Add support for running tests on [PhantomJS](http://phantomjs.org/). |
| 9 |
| 8 ### 0.12.0-beta.6 | 10 ### 0.12.0-beta.6 |
| 9 | 11 |
| 10 * Add the ability to run multiple test suites concurrently. By default a number | 12 * Add the ability to run multiple test suites concurrently. By default a number |
| 11 of concurrent test suites will be run equal to half the machine's processors; | 13 of concurrent test suites will be run equal to half the machine's processors; |
| 12 this can be controlled with the `--concurrency` flag. | 14 this can be controlled with the `--concurrency` flag. |
| 13 | 15 |
| 14 * Expose load errors as test failures rather than having them kill the entire | 16 * Expose load errors as test failures rather than having them kill the entire |
| 15 process. | 17 process. |
| 16 | 18 |
| 17 * Add support for running tests on Firefox. | 19 * Add support for running tests on Firefox. |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 195 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 194 `expectAsyncUntil1` and `expectAsyncUntil2` | 196 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 195 * `TestCase`: | 197 * `TestCase`: |
| 196 * Removed properties: `setUp`, `tearDown`, `testFunction` | 198 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 197 * `enabled` is now get-only | 199 * `enabled` is now get-only |
| 198 * Removed methods: `pass`, `fail`, `error` | 200 * Removed methods: `pass`, `fail`, `error` |
| 199 * `interactive_html_config.dart` has been removed. | 201 * `interactive_html_config.dart` has been removed. |
| 200 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 202 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 201 `solo_group` now throw a `StateError` if called while tests are running. | 203 `solo_group` now throw a `StateError` if called while tests are running. |
| 202 * `rerunTests` has been removed. | 204 * `rerunTests` has been removed. |
| OLD | NEW |