| OLD | NEW |
| 1 ### 0.12.0-beta.9 | 1 ### 0.12.0-beta.9 |
| 2 | 2 |
| 3 * Fix running VM tests against `pub serve`. | 3 * Fix running VM tests against `pub serve`. |
| 4 | 4 |
| 5 * Properly load Dartium from the Dart Editor when possible. |
| 6 |
| 5 ### 0.12.0-beta.8 | 7 ### 0.12.0-beta.8 |
| 6 | 8 |
| 7 * Add support for configuring timeouts on a test, group, and suite basis. Test | 9 * Add support for configuring timeouts on a test, group, and suite basis. Test |
| 8 and group timeouts are configured with the `timeout` named argument; suites | 10 and group timeouts are configured with the `timeout` named argument; suites |
| 9 are configured using the `@Timeout` annotation. See [the README][timeout] for | 11 are configured using the `@Timeout` annotation. See [the README][timeout] for |
| 10 more information. | 12 more information. |
| 11 | 13 |
| 12 [timeout]: https://github.com/dart-lang/test/blob/master/README.md#timeouts | 14 [timeout]: https://github.com/dart-lang/test/blob/master/README.md#timeouts |
| 13 | 15 |
| 14 * Support running tests on Safari. | 16 * Support running tests on Safari. |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 216 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 215 `expectAsyncUntil1` and `expectAsyncUntil2` | 217 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 216 * `TestCase`: | 218 * `TestCase`: |
| 217 * Removed properties: `setUp`, `tearDown`, `testFunction` | 219 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 218 * `enabled` is now get-only | 220 * `enabled` is now get-only |
| 219 * Removed methods: `pass`, `fail`, `error` | 221 * Removed methods: `pass`, `fail`, `error` |
| 220 * `interactive_html_config.dart` has been removed. | 222 * `interactive_html_config.dart` has been removed. |
| 221 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 223 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 222 `solo_group` now throw a `StateError` if called while tests are running. | 224 `solo_group` now throw a `StateError` if called while tests are running. |
| 223 * `rerunTests` has been removed. | 225 * `rerunTests` has been removed. |
| OLD | NEW |