OLD | NEW |
1 ### 0.12.0-beta.11 | 1 ### 0.12.0-beta.11 |
2 | 2 |
| 3 * Tests, groups, and suites can now be configured on a platform-by-platform |
| 4 basis. Tests and groups are configured using the `onPlatform` named argument; |
| 5 suites are configured using the `@OnPlatform` annotation. See [the |
| 6 README][onPlatform] for more information. |
| 7 |
| 8 [onPlatform]: https://github.com/dart-lang/test/blob/master/README.md#platform-s
pecific-configuration |
| 9 |
3 * Properly ignore unrelated `link` tags in custom HTML. | 10 * Properly ignore unrelated `link` tags in custom HTML. |
4 | 11 |
5 * Preserve the stack traces for load errors in isolates and iframes. | 12 * Preserve the stack traces for load errors in isolates and iframes. |
6 | 13 |
7 ### 0.12.0-beta.10 | 14 ### 0.12.0-beta.10 |
8 | 15 |
9 * Fix running browser tests in subdirectories. | 16 * Fix running browser tests in subdirectories. |
10 | 17 |
11 ### 0.12.0-beta.9 | 18 ### 0.12.0-beta.9 |
12 | 19 |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 246 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
240 `expectAsyncUntil1` and `expectAsyncUntil2` | 247 `expectAsyncUntil1` and `expectAsyncUntil2` |
241 * `TestCase`: | 248 * `TestCase`: |
242 * Removed properties: `setUp`, `tearDown`, `testFunction` | 249 * Removed properties: `setUp`, `tearDown`, `testFunction` |
243 * `enabled` is now get-only | 250 * `enabled` is now get-only |
244 * Removed methods: `pass`, `fail`, `error` | 251 * Removed methods: `pass`, `fail`, `error` |
245 * `interactive_html_config.dart` has been removed. | 252 * `interactive_html_config.dart` has been removed. |
246 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 253 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
247 `solo_group` now throw a `StateError` if called while tests are running. | 254 `solo_group` now throw a `StateError` if called while tests are running. |
248 * `rerunTests` has been removed. | 255 * `rerunTests` has been removed. |
OLD | NEW |