OLD | NEW |
| 1 ## 0.12.13+1 |
| 2 |
| 3 * Declare support for version 1.17 of the Dart SDK. |
| 4 |
1 ## 0.12.13 | 5 ## 0.12.13 |
2 | 6 |
3 * Add support for a global configuration file. On Windows, this file defaults to | 7 * Add support for a global configuration file. On Windows, this file defaults to |
4 `%LOCALAPPDATA%\DartTest.yaml`. On Unix, it defaults to `~/.dart_test.yaml`. | 8 `%LOCALAPPDATA%\DartTest.yaml`. On Unix, it defaults to `~/.dart_test.yaml`. |
5 It can also be explicitly set using the `DART_TEST_CONFIG` environment | 9 It can also be explicitly set using the `DART_TEST_CONFIG` environment |
6 variable. See [the configuration documentation][global config] for details. | 10 variable. See [the configuration documentation][global config] for details. |
7 | 11 |
8 * The `--name` and `--plain-name` arguments may be passed more than once, and | 12 * The `--name` and `--plain-name` arguments may be passed more than once, and |
9 may be passed together. A test must match all name constraints in order to be | 13 may be passed together. A test must match all name constraints in order to be |
10 run. | 14 run. |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 492 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
489 `expectAsyncUntil1` and `expectAsyncUntil2` | 493 `expectAsyncUntil1` and `expectAsyncUntil2` |
490 * `TestCase`: | 494 * `TestCase`: |
491 * Removed properties: `setUp`, `tearDown`, `testFunction` | 495 * Removed properties: `setUp`, `tearDown`, `testFunction` |
492 * `enabled` is now get-only | 496 * `enabled` is now get-only |
493 * Removed methods: `pass`, `fail`, `error` | 497 * Removed methods: `pass`, `fail`, `error` |
494 * `interactive_html_config.dart` has been removed. | 498 * `interactive_html_config.dart` has been removed. |
495 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 499 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
496 `solo_group` now throw a `StateError` if called while tests are running. | 500 `solo_group` now throw a `StateError` if called while tests are running. |
497 * `rerunTests` has been removed. | 501 * `rerunTests` has been removed. |
OLD | NEW |