| OLD | NEW |
| 1 ## 0.12.10 |
| 2 |
| 3 * Add support for a package-level configuration file called `dart_test.yaml`. |
| 4 |
| 1 ## 0.12.9 | 5 ## 0.12.9 |
| 2 | 6 |
| 3 * Add `SuiteEvent` to the JSON reporter, which reports data about the suites in | 7 * Add `SuiteEvent` to the JSON reporter, which reports data about the suites in |
| 4 which tests are run. | 8 which tests are run. |
| 5 | 9 |
| 6 * Add `AllSuitesEvent` to the JSON reporter, which reports the total number of | 10 * Add `AllSuitesEvent` to the JSON reporter, which reports the total number of |
| 7 suites that will be run. | 11 suites that will be run. |
| 8 | 12 |
| 9 * Add `Group.testCount` to the JSON reporter, which reports the total number of | 13 * Add `Group.testCount` to the JSON reporter, which reports the total number of |
| 10 tests in each group. | 14 tests in each group. |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 388 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 385 `expectAsyncUntil1` and `expectAsyncUntil2` | 389 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 386 * `TestCase`: | 390 * `TestCase`: |
| 387 * Removed properties: `setUp`, `tearDown`, `testFunction` | 391 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 388 * `enabled` is now get-only | 392 * `enabled` is now get-only |
| 389 * Removed methods: `pass`, `fail`, `error` | 393 * Removed methods: `pass`, `fail`, `error` |
| 390 * `interactive_html_config.dart` has been removed. | 394 * `interactive_html_config.dart` has been removed. |
| 391 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 395 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 392 `solo_group` now throw a `StateError` if called while tests are running. | 396 `solo_group` now throw a `StateError` if called while tests are running. |
| 393 * `rerunTests` has been removed. | 397 * `rerunTests` has been removed. |
| OLD | NEW |