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