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 * Tests, groups, and suites may be declared as skipped. Tests and groups are |
| 9 skipped using the `skip` named argument; suites are skipped using the `@Skip` |
| 10 annotation. See [the README][skip] for more information. |
| 11 |
| 12 [skip]: https://github.com/dart-lang/test/blob/master/README.md#skipping-tests |
| 13 |
8 * Fix running VM tests against `pub serve`. | 14 * Fix running VM tests against `pub serve`. |
9 | 15 |
10 * More gracefully handle browser errors. | 16 * More gracefully handle browser errors. |
11 | 17 |
12 * Properly load Dartium from the Dart Editor when possible. | 18 * Properly load Dartium from the Dart Editor when possible. |
13 | 19 |
14 ### 0.12.0-beta.8 | 20 ### 0.12.0-beta.8 |
15 | 21 |
16 * Add support for configuring timeouts on a test, group, and suite basis. Test | 22 * Add support for configuring timeouts on a test, group, and suite basis. Test |
17 and group timeouts are configured with the `timeout` named argument; suites | 23 and group timeouts are configured with the `timeout` named argument; suites |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 229 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
224 `expectAsyncUntil1` and `expectAsyncUntil2` | 230 `expectAsyncUntil1` and `expectAsyncUntil2` |
225 * `TestCase`: | 231 * `TestCase`: |
226 * Removed properties: `setUp`, `tearDown`, `testFunction` | 232 * Removed properties: `setUp`, `tearDown`, `testFunction` |
227 * `enabled` is now get-only | 233 * `enabled` is now get-only |
228 * Removed methods: `pass`, `fail`, `error` | 234 * Removed methods: `pass`, `fail`, `error` |
229 * `interactive_html_config.dart` has been removed. | 235 * `interactive_html_config.dart` has been removed. |
230 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 236 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
231 `solo_group` now throw a `StateError` if called while tests are running. | 237 `solo_group` now throw a `StateError` if called while tests are running. |
232 * `rerunTests` has been removed. | 238 * `rerunTests` has been removed. |
OLD | NEW |