| OLD | NEW |
| 1 ## 0.12.13 | 1 ## 0.12.13 |
| 2 | 2 |
| 3 * The `--name` and `--plain-name` arguments may be passed more than once, and | 3 * The `--name` and `--plain-name` arguments may be passed more than once, and |
| 4 may be passed together. A test must match all name constraints in order to be | 4 may be passed together. A test must match all name constraints in order to be |
| 5 run. | 5 run. |
| 6 | 6 |
| 7 * Add `names` and `plain_names` fields to the package configuration file. These | 7 * Add `names` and `plain_names` fields to the package configuration file. These |
| 8 allow users to control which tests are run for the given presets. | 8 allow presets to control which tests are run based on their names. |
| 9 |
| 10 * Add `include_tags` and `exclude_tags` fields to the package configuration |
| 11 file. These allow presets to control which tests are run based on their tags. |
| 9 | 12 |
| 10 ## 0.12.12 | 13 ## 0.12.12 |
| 11 | 14 |
| 12 * Add support for [test presets][]. These are defined using the `presets` field | 15 * Add support for [test presets][]. These are defined using the `presets` field |
| 13 in the package configuration file. They can be selected by passing `--preset` | 16 in the package configuration file. They can be selected by passing `--preset` |
| 14 or `-P`, or by using the `add_presets` field in the package configuration | 17 or `-P`, or by using the `add_presets` field in the package configuration |
| 15 file. | 18 file. |
| 16 | 19 |
| 17 * Add an `on_os` field to the package configuration file that allows users to | 20 * Add an `on_os` field to the package configuration file that allows users to |
| 18 select different configuration for different operating systems. | 21 select different configuration for different operating systems. |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 451 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 449 `expectAsyncUntil1` and `expectAsyncUntil2` | 452 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 450 * `TestCase`: | 453 * `TestCase`: |
| 451 * Removed properties: `setUp`, `tearDown`, `testFunction` | 454 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 452 * `enabled` is now get-only | 455 * `enabled` is now get-only |
| 453 * Removed methods: `pass`, `fail`, `error` | 456 * Removed methods: `pass`, `fail`, `error` |
| 454 * `interactive_html_config.dart` has been removed. | 457 * `interactive_html_config.dart` has been removed. |
| 455 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 458 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 456 `solo_group` now throw a `StateError` if called while tests are running. | 459 `solo_group` now throw a `StateError` if called while tests are running. |
| 457 * `rerunTests` has been removed. | 460 * `rerunTests` has been removed. |
| OLD | NEW |