OLD | NEW |
| 1 ## 0.12.13 |
| 2 |
| 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 |
| 5 run. |
| 6 |
| 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. |
| 9 |
1 ## 0.12.12 | 10 ## 0.12.12 |
2 | 11 |
3 * Add support for [test presets][]. These are defined using the `presets` field | 12 * Add support for [test presets][]. These are defined using the `presets` field |
4 in the package configuration file. They can be selected by passing `--preset` | 13 in the package configuration file. They can be selected by passing `--preset` |
5 or `-P`, or by using the `add_presets` field in the package configuration | 14 or `-P`, or by using the `add_presets` field in the package configuration |
6 file. | 15 file. |
7 | 16 |
8 * Add an `on_os` field to the package configuration file that allows users to | 17 * Add an `on_os` field to the package configuration file that allows users to |
9 select different configuration for different operating systems. | 18 select different configuration for different operating systems. |
10 | 19 |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 448 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
440 `expectAsyncUntil1` and `expectAsyncUntil2` | 449 `expectAsyncUntil1` and `expectAsyncUntil2` |
441 * `TestCase`: | 450 * `TestCase`: |
442 * Removed properties: `setUp`, `tearDown`, `testFunction` | 451 * Removed properties: `setUp`, `tearDown`, `testFunction` |
443 * `enabled` is now get-only | 452 * `enabled` is now get-only |
444 * Removed methods: `pass`, `fail`, `error` | 453 * Removed methods: `pass`, `fail`, `error` |
445 * `interactive_html_config.dart` has been removed. | 454 * `interactive_html_config.dart` has been removed. |
446 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 455 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
447 `solo_group` now throw a `StateError` if called while tests are running. | 456 `solo_group` now throw a `StateError` if called while tests are running. |
448 * `rerunTests` has been removed. | 457 * `rerunTests` has been removed. |
OLD | NEW |