OLD | NEW |
---|---|
1 ## 0.13.0 | |
2 | |
3 * Deprecated `expectAsync` and `expectAsyncUntil`, to make the package strong | |
4 mode clean. Replaced by | |
5 * `expectAsync0`, `expectAsync1`, ... `expectAsync6`, and | |
6 * `expectAsyncUntil0`, `expectAsyncUntil1`, ... `expectAsyncUntil6`. | |
nweiz
2016/11/21 22:08:02
It would be nice to have more details here. I'd wr
floitsch
2016/11/22 14:14:27
Done.
| |
7 | |
1 ## 0.12.16 | 8 ## 0.12.16 |
2 | 9 |
3 * Allow tools to interact with browser debuggers using the JSON reporter. | 10 * Allow tools to interact with browser debuggers using the JSON reporter. |
4 | 11 |
5 ## 0.12.15+12 | 12 ## 0.12.15+12 |
6 | 13 |
7 * Fix a race condition that could cause the runner to stall for up to three | 14 * Fix a race condition that could cause the runner to stall for up to three |
8 seconds after completing. | 15 seconds after completing. |
9 | 16 |
10 ## 0.12.15+11 | 17 ## 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`, | 589 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
583 `expectAsyncUntil1` and `expectAsyncUntil2` | 590 `expectAsyncUntil1` and `expectAsyncUntil2` |
584 * `TestCase`: | 591 * `TestCase`: |
585 * Removed properties: `setUp`, `tearDown`, `testFunction` | 592 * Removed properties: `setUp`, `tearDown`, `testFunction` |
586 * `enabled` is now get-only | 593 * `enabled` is now get-only |
587 * Removed methods: `pass`, `fail`, `error` | 594 * Removed methods: `pass`, `fail`, `error` |
588 * `interactive_html_config.dart` has been removed. | 595 * `interactive_html_config.dart` has been removed. |
589 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 596 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
590 `solo_group` now throw a `StateError` if called while tests are running. | 597 `solo_group` now throw a `StateError` if called while tests are running. |
591 * `rerunTests` has been removed. | 598 * `rerunTests` has been removed. |
OLD | NEW |