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