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 * Stop `pub serve` from emitting a duplicate-asset error for tests with custom | 14 * Stop `pub serve` from emitting a duplicate-asset error for tests with custom |
8 HTML files. | 15 HTML files. |
9 | 16 |
10 ### 0.12.0-beta.10 | 17 ### 0.12.0-beta.10 |
11 | 18 |
12 * Fix running browser tests in subdirectories. | 19 * Fix running browser tests in subdirectories. |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 249 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
243 `expectAsyncUntil1` and `expectAsyncUntil2` | 250 `expectAsyncUntil1` and `expectAsyncUntil2` |
244 * `TestCase`: | 251 * `TestCase`: |
245 * Removed properties: `setUp`, `tearDown`, `testFunction` | 252 * Removed properties: `setUp`, `tearDown`, `testFunction` |
246 * `enabled` is now get-only | 253 * `enabled` is now get-only |
247 * Removed methods: `pass`, `fail`, `error` | 254 * Removed methods: `pass`, `fail`, `error` |
248 * `interactive_html_config.dart` has been removed. | 255 * `interactive_html_config.dart` has been removed. |
249 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 256 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
250 `solo_group` now throw a `StateError` if called while tests are running. | 257 `solo_group` now throw a `StateError` if called while tests are running. |
251 * `rerunTests` has been removed. | 258 * `rerunTests` has been removed. |
OLD | NEW |