| OLD | NEW |
| 1 ## 0.12.15 | 1 ## 0.12.15 |
| 2 | 2 |
| 3 * Add a `skip` parameter to `expect()`. Marking a single expect as skipped will | 3 * Add a `skip` parameter to `expect()`. Marking a single expect as skipped will |
| 4 cause the test itself to be marked as skipped. | 4 cause the test itself to be marked as skipped. |
| 5 | 5 |
| 6 * Add a `--run-skipped` parameter and `run_skipped` configuration field that |
| 7 cause tests to be run even if they're marked as skipped. |
| 8 |
| 6 ## 0.12.14+1 | 9 ## 0.12.14+1 |
| 7 | 10 |
| 8 * Narrow the constraint on `yaml`. | 11 * Narrow the constraint on `yaml`. |
| 9 | 12 |
| 10 ## 0.12.14 | 13 ## 0.12.14 |
| 11 | 14 |
| 12 * Add test and group location information to the JSON reporter. | 15 * Add test and group location information to the JSON reporter. |
| 13 | 16 |
| 14 ## 0.12.13+5 | 17 ## 0.12.13+5 |
| 15 | 18 |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 526 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 524 `expectAsyncUntil1` and `expectAsyncUntil2` | 527 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 525 * `TestCase`: | 528 * `TestCase`: |
| 526 * Removed properties: `setUp`, `tearDown`, `testFunction` | 529 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 527 * `enabled` is now get-only | 530 * `enabled` is now get-only |
| 528 * Removed methods: `pass`, `fail`, `error` | 531 * Removed methods: `pass`, `fail`, `error` |
| 529 * `interactive_html_config.dart` has been removed. | 532 * `interactive_html_config.dart` has been removed. |
| 530 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 533 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 531 `solo_group` now throw a `StateError` if called while tests are running. | 534 `solo_group` now throw a `StateError` if called while tests are running. |
| 532 * `rerunTests` has been removed. | 535 * `rerunTests` has been removed. |
| OLD | NEW |