OLD | NEW |
| 1 ## 0.12.12 |
| 2 |
| 3 * Add an `ios` platform selector variable. This variable will only be true when |
| 4 the `test` executable itself is running on iOS, not when it's running browser |
| 5 tests on an iOS browser. |
| 6 |
1 ## 0.12.11 | 7 ## 0.12.11 |
2 | 8 |
3 * Add a `tags` field to the package configuration file that allows users to | 9 * Add a `tags` field to the package configuration file that allows users to |
4 provide configuration for specific tags. | 10 provide configuration for specific tags. |
5 | 11 |
6 * The `--tags` and `--exclude-tags` command-line flags now allow | 12 * The `--tags` and `--exclude-tags` command-line flags now allow |
7 [boolean selector syntax][]. For example, you can now pass `--tags "(chrome || | 13 [boolean selector syntax][]. For example, you can now pass `--tags "(chrome || |
8 firefox) && !slow"` to select quick Chrome or Firefox tests. | 14 firefox) && !slow"` to select quick Chrome or Firefox tests. |
9 | 15 |
10 [boolean selector syntax]: https://github.com/dart-lang/boolean_selector/blob/ma
ster/README.md | 16 [boolean selector syntax]: https://github.com/dart-lang/boolean_selector/blob/ma
ster/README.md |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 418 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
413 `expectAsyncUntil1` and `expectAsyncUntil2` | 419 `expectAsyncUntil1` and `expectAsyncUntil2` |
414 * `TestCase`: | 420 * `TestCase`: |
415 * Removed properties: `setUp`, `tearDown`, `testFunction` | 421 * Removed properties: `setUp`, `tearDown`, `testFunction` |
416 * `enabled` is now get-only | 422 * `enabled` is now get-only |
417 * Removed methods: `pass`, `fail`, `error` | 423 * Removed methods: `pass`, `fail`, `error` |
418 * `interactive_html_config.dart` has been removed. | 424 * `interactive_html_config.dart` has been removed. |
419 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 425 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
420 `solo_group` now throw a `StateError` if called while tests are running. | 426 `solo_group` now throw a `StateError` if called while tests are running. |
421 * `rerunTests` has been removed. | 427 * `rerunTests` has been removed. |
OLD | NEW |