| OLD | NEW |
| 1 ## 0.12.15+1 |
| 2 |
| 3 * Declare support for version 1.19 of the Dart SDK. |
| 4 |
| 1 ## 0.12.15 | 5 ## 0.12.15 |
| 2 | 6 |
| 3 * Add a `skip` parameter to `expect()`. Marking a single expect as skipped will | 7 * Add a `skip` parameter to `expect()`. Marking a single expect as skipped will |
| 4 cause the test itself to be marked as skipped. | 8 cause the test itself to be marked as skipped. |
| 5 | 9 |
| 6 * Add a `--run-skipped` parameter and `run_skipped` configuration field that | 10 * Add a `--run-skipped` parameter and `run_skipped` configuration field that |
| 7 cause tests to be run even if they're marked as skipped. | 11 cause tests to be run even if they're marked as skipped. |
| 8 | 12 |
| 9 ## 0.12.14+1 | 13 ## 0.12.14+1 |
| 10 | 14 |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 530 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 527 `expectAsyncUntil1` and `expectAsyncUntil2` | 531 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 528 * `TestCase`: | 532 * `TestCase`: |
| 529 * Removed properties: `setUp`, `tearDown`, `testFunction` | 533 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 530 * `enabled` is now get-only | 534 * `enabled` is now get-only |
| 531 * Removed methods: `pass`, `fail`, `error` | 535 * Removed methods: `pass`, `fail`, `error` |
| 532 * `interactive_html_config.dart` has been removed. | 536 * `interactive_html_config.dart` has been removed. |
| 533 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 537 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 534 `solo_group` now throw a `StateError` if called while tests are running. | 538 `solo_group` now throw a `StateError` if called while tests are running. |
| 535 * `rerunTests` has been removed. | 539 * `rerunTests` has been removed. |
| OLD | NEW |