| OLD | NEW |
| 1 ### 0.12.0-beta.9 | 1 ### 0.12.0-beta.9 |
| 2 | 2 |
| 3 * A browser test may use a custom HTML file. See [the README][custom html] for | 3 * A browser test may use a custom HTML file. See [the README][custom html] for |
| 4 more information. | 4 more information. |
| 5 | 5 |
| 6 [custom html]: https://github.com/dart-lang/test/blob/master/README.md#running-t
ests-with-custom-html | 6 [custom html]: https://github.com/dart-lang/test/blob/master/README.md#running-t
ests-with-custom-html |
| 7 | 7 |
| 8 * Fix running VM tests against `pub serve`. | 8 * Fix running VM tests against `pub serve`. |
| 9 | 9 |
| 10 * More gracefully handle browser errors. |
| 11 |
| 10 * Properly load Dartium from the Dart Editor when possible. | 12 * Properly load Dartium from the Dart Editor when possible. |
| 11 | 13 |
| 12 ### 0.12.0-beta.8 | 14 ### 0.12.0-beta.8 |
| 13 | 15 |
| 14 * Add support for configuring timeouts on a test, group, and suite basis. Test | 16 * Add support for configuring timeouts on a test, group, and suite basis. Test |
| 15 and group timeouts are configured with the `timeout` named argument; suites | 17 and group timeouts are configured with the `timeout` named argument; suites |
| 16 are configured using the `@Timeout` annotation. See [the README][timeout] for | 18 are configured using the `@Timeout` annotation. See [the README][timeout] for |
| 17 more information. | 19 more information. |
| 18 | 20 |
| 19 [timeout]: https://github.com/dart-lang/test/blob/master/README.md#timeouts | 21 [timeout]: https://github.com/dart-lang/test/blob/master/README.md#timeouts |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 223 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 222 `expectAsyncUntil1` and `expectAsyncUntil2` | 224 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 223 * `TestCase`: | 225 * `TestCase`: |
| 224 * Removed properties: `setUp`, `tearDown`, `testFunction` | 226 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 225 * `enabled` is now get-only | 227 * `enabled` is now get-only |
| 226 * Removed methods: `pass`, `fail`, `error` | 228 * Removed methods: `pass`, `fail`, `error` |
| 227 * `interactive_html_config.dart` has been removed. | 229 * `interactive_html_config.dart` has been removed. |
| 228 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 230 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 229 `solo_group` now throw a `StateError` if called while tests are running. | 231 `solo_group` now throw a `StateError` if called while tests are running. |
| 230 * `rerunTests` has been removed. | 232 * `rerunTests` has been removed. |
| OLD | NEW |