| OLD | NEW |
| 1 ### 0.12.0-beta.8 | 1 ### 0.12.0-beta.8 |
| 2 | 2 |
| 3 * Add support for configuring timeouts on a test, group, and suite basis. Test | 3 * Add support for configuring timeouts on a test, group, and suite basis. Test |
| 4 and group timeouts are configured with the `timeout` named argument; suites | 4 and group timeouts are configured with the `timeout` named argument; suites |
| 5 are configured using the `@Timeout` annotation. See [the README][timeout] for | 5 are configured using the `@Timeout` annotation. See [the README][timeout] for |
| 6 more information. | 6 more information. |
| 7 | 7 |
| 8 [timeout]: https://github.com/dart-lang/test/blob/master/README.md#timeouts | 8 [timeout]: https://github.com/dart-lang/test/blob/master/README.md#timeouts |
| 9 | 9 |
| 10 * Support running tests on Safari. | 10 * Support running tests on Safari. |
| 11 | 11 |
| 12 * Add a `--version` flag. | 12 * Add a `--version` flag. |
| 13 | 13 |
| 14 * Add an animation to run in the browser while testing. |
| 15 |
| 14 ### 0.12.0-beta.7 | 16 ### 0.12.0-beta.7 |
| 15 | 17 |
| 16 * Browser tests can now load assets by making HTTP requests to the corresponding | 18 * Browser tests can now load assets by making HTTP requests to the corresponding |
| 17 relative URLs. | 19 relative URLs. |
| 18 | 20 |
| 19 * Add support for running tests on Dartium and the Dartium content shell. | 21 * Add support for running tests on Dartium and the Dartium content shell. |
| 20 | 22 |
| 21 * Add support for running tests on [PhantomJS](http://phantomjs.org/). | 23 * Add support for running tests on [PhantomJS](http://phantomjs.org/). |
| 22 | 24 |
| 23 ### 0.12.0-beta.6 | 25 ### 0.12.0-beta.6 |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 210 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 209 `expectAsyncUntil1` and `expectAsyncUntil2` | 211 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 210 * `TestCase`: | 212 * `TestCase`: |
| 211 * Removed properties: `setUp`, `tearDown`, `testFunction` | 213 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 212 * `enabled` is now get-only | 214 * `enabled` is now get-only |
| 213 * Removed methods: `pass`, `fail`, `error` | 215 * Removed methods: `pass`, `fail`, `error` |
| 214 * `interactive_html_config.dart` has been removed. | 216 * `interactive_html_config.dart` has been removed. |
| 215 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 217 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 216 `solo_group` now throw a `StateError` if called while tests are running. | 218 `solo_group` now throw a `StateError` if called while tests are running. |
| 217 * `rerunTests` has been removed. | 219 * `rerunTests` has been removed. |
| OLD | NEW |