| OLD | NEW |
| 1 ## 0.12.6 | 1 ## 0.12.6 |
| 2 | 2 |
| 3 * Add a machine-readable JSON reporter. For details, see | 3 * Add a machine-readable JSON reporter. For details, see |
| 4 [the protocol documentation][json-protocol]. | 4 [the protocol documentation][json-protocol]. |
| 5 | 5 |
| 6 * Skipped groups now properly print skip messages. |
| 7 |
| 6 [json-protocol]: https://github.com/dart-lang/test/blob/master/json_reporter.md | 8 [json-protocol]: https://github.com/dart-lang/test/blob/master/json_reporter.md |
| 7 | 9 |
| 8 ## 0.12.5+2 | 10 ## 0.12.5+2 |
| 9 | 11 |
| 10 * Declare compatibility with Dart 1.14 and 1.15. | 12 * Declare compatibility with Dart 1.14 and 1.15. |
| 11 | 13 |
| 12 ## 0.12.5+1 | 14 ## 0.12.5+1 |
| 13 | 15 |
| 14 * Fixed a deadlock bug when using `setUpAll()` and `tearDownAll()`. | 16 * Fixed a deadlock bug when using `setUpAll()` and `tearDownAll()`. |
| 15 | 17 |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 337 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 336 `expectAsyncUntil1` and `expectAsyncUntil2` | 338 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 337 * `TestCase`: | 339 * `TestCase`: |
| 338 * Removed properties: `setUp`, `tearDown`, `testFunction` | 340 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 339 * `enabled` is now get-only | 341 * `enabled` is now get-only |
| 340 * Removed methods: `pass`, `fail`, `error` | 342 * Removed methods: `pass`, `fail`, `error` |
| 341 * `interactive_html_config.dart` has been removed. | 343 * `interactive_html_config.dart` has been removed. |
| 342 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 344 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 343 `solo_group` now throw a `StateError` if called while tests are running. | 345 `solo_group` now throw a `StateError` if called while tests are running. |
| 344 * `rerunTests` has been removed. | 346 * `rerunTests` has been removed. |
| OLD | NEW |