| 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. |
| 11 |
| 10 * Add a `--version` flag. | 12 * Add a `--version` flag. |
| 11 | 13 |
| 12 ### 0.12.0-beta.7 | 14 ### 0.12.0-beta.7 |
| 13 | 15 |
| 14 * Browser tests can now load assets by making HTTP requests to the corresponding | 16 * Browser tests can now load assets by making HTTP requests to the corresponding |
| 15 relative URLs. | 17 relative URLs. |
| 16 | 18 |
| 17 * Add support for running tests on Dartium and the Dartium content shell. | 19 * Add support for running tests on Dartium and the Dartium content shell. |
| 18 | 20 |
| 19 * Add support for running tests on [PhantomJS](http://phantomjs.org/). | 21 * Add support for running tests on [PhantomJS](http://phantomjs.org/). |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 208 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 207 `expectAsyncUntil1` and `expectAsyncUntil2` | 209 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 208 * `TestCase`: | 210 * `TestCase`: |
| 209 * Removed properties: `setUp`, `tearDown`, `testFunction` | 211 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 210 * `enabled` is now get-only | 212 * `enabled` is now get-only |
| 211 * Removed methods: `pass`, `fail`, `error` | 213 * Removed methods: `pass`, `fail`, `error` |
| 212 * `interactive_html_config.dart` has been removed. | 214 * `interactive_html_config.dart` has been removed. |
| 213 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 215 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 214 `solo_group` now throw a `StateError` if called while tests are running. | 216 `solo_group` now throw a `StateError` if called while tests are running. |
| 215 * `rerunTests` has been removed. | 217 * `rerunTests` has been removed. |
| OLD | NEW |