OLD | NEW |
| 1 ### 0.12.0-beta.8 |
| 2 |
| 3 * 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 |
| 5 are configured using the `@Timeout` annotation. See [the README][timeout] for |
| 6 more information. |
| 7 |
| 8 [timeout]: https://github.com/dart-lang/test/blob/master/README.md#timeouts |
| 9 |
1 ### 0.12.0-beta.7 | 10 ### 0.12.0-beta.7 |
2 | 11 |
3 * Browser tests can now load assets by making HTTP requests to the corresponding | 12 * Browser tests can now load assets by making HTTP requests to the corresponding |
4 relative URLs. | 13 relative URLs. |
5 | 14 |
6 * Add support for running tests on Dartium and the Dartium content shell. | 15 * Add support for running tests on Dartium and the Dartium content shell. |
7 | 16 |
8 * Add support for running tests on [PhantomJS](http://phantomjs.org/). | 17 * Add support for running tests on [PhantomJS](http://phantomjs.org/). |
9 | 18 |
10 ### 0.12.0-beta.6 | 19 ### 0.12.0-beta.6 |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 204 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
196 `expectAsyncUntil1` and `expectAsyncUntil2` | 205 `expectAsyncUntil1` and `expectAsyncUntil2` |
197 * `TestCase`: | 206 * `TestCase`: |
198 * Removed properties: `setUp`, `tearDown`, `testFunction` | 207 * Removed properties: `setUp`, `tearDown`, `testFunction` |
199 * `enabled` is now get-only | 208 * `enabled` is now get-only |
200 * Removed methods: `pass`, `fail`, `error` | 209 * Removed methods: `pass`, `fail`, `error` |
201 * `interactive_html_config.dart` has been removed. | 210 * `interactive_html_config.dart` has been removed. |
202 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 211 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
203 `solo_group` now throw a `StateError` if called while tests are running. | 212 `solo_group` now throw a `StateError` if called while tests are running. |
204 * `rerunTests` has been removed. | 213 * `rerunTests` has been removed. |
OLD | NEW |