OLD | NEW |
| 1 ## 0.13.0 |
| 2 |
| 3 * Deprecate `expectAsync` and `expectAsyncUntil`, since they currently can't be |
| 4 made to work cleanly in strong mode. They are replaced with separate methods |
| 5 for each number of callback arguments: |
| 6 * `expectAsync0`, `expectAsync1`, ... `expectAsync6`, and |
| 7 * `expectAsyncUntil0`, `expectAsyncUntil1`, ... `expectAsyncUntil6`. |
| 8 |
1 ## 0.12.16 | 9 ## 0.12.16 |
2 | 10 |
3 * Allow tools to interact with browser debuggers using the JSON reporter. | 11 * Allow tools to interact with browser debuggers using the JSON reporter. |
4 | 12 |
5 ## 0.12.15+12 | 13 ## 0.12.15+12 |
6 | 14 |
7 * Fix a race condition that could cause the runner to stall for up to three | 15 * Fix a race condition that could cause the runner to stall for up to three |
8 seconds after completing. | 16 seconds after completing. |
9 | 17 |
10 ## 0.12.15+11 | 18 ## 0.12.15+11 |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 590 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
583 `expectAsyncUntil1` and `expectAsyncUntil2` | 591 `expectAsyncUntil1` and `expectAsyncUntil2` |
584 * `TestCase`: | 592 * `TestCase`: |
585 * Removed properties: `setUp`, `tearDown`, `testFunction` | 593 * Removed properties: `setUp`, `tearDown`, `testFunction` |
586 * `enabled` is now get-only | 594 * `enabled` is now get-only |
587 * Removed methods: `pass`, `fail`, `error` | 595 * Removed methods: `pass`, `fail`, `error` |
588 * `interactive_html_config.dart` has been removed. | 596 * `interactive_html_config.dart` has been removed. |
589 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 597 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
590 `solo_group` now throw a `StateError` if called while tests are running. | 598 `solo_group` now throw a `StateError` if called while tests are running. |
591 * `rerunTests` has been removed. | 599 * `rerunTests` has been removed. |
OLD | NEW |