OLD | NEW |
| 1 ## 0.12.8 |
| 2 |
| 3 * Organize the `--help` output into sections. |
| 4 |
1 ## 0.12.7 | 5 ## 0.12.7 |
2 | 6 |
3 * Add the ability to re-run tests while debugging. When the browser is paused at | 7 * Add the ability to re-run tests while debugging. When the browser is paused at |
4 a breakpoint, the test runner will open an interactive console on the command | 8 a breakpoint, the test runner will open an interactive console on the command |
5 line that can be used to restart the test. | 9 line that can be used to restart the test. |
6 | 10 |
7 * Add support for passing any object as a description to `test()` and `group()`. | 11 * Add support for passing any object as a description to `test()` and `group()`. |
8 These objects will be converted to strings. | 12 These objects will be converted to strings. |
9 | 13 |
10 * Add the ability to tag tests. Tests with specific tags may be run by passing | 14 * Add the ability to tag tests. Tests with specific tags may be run by passing |
(...skipping 356 matching lines...) Loading... |
367 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 371 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
368 `expectAsyncUntil1` and `expectAsyncUntil2` | 372 `expectAsyncUntil1` and `expectAsyncUntil2` |
369 * `TestCase`: | 373 * `TestCase`: |
370 * Removed properties: `setUp`, `tearDown`, `testFunction` | 374 * Removed properties: `setUp`, `tearDown`, `testFunction` |
371 * `enabled` is now get-only | 375 * `enabled` is now get-only |
372 * Removed methods: `pass`, `fail`, `error` | 376 * Removed methods: `pass`, `fail`, `error` |
373 * `interactive_html_config.dart` has been removed. | 377 * `interactive_html_config.dart` has been removed. |
374 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 378 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
375 `solo_group` now throw a `StateError` if called while tests are running. | 379 `solo_group` now throw a `StateError` if called while tests are running. |
376 * `rerunTests` has been removed. | 380 * `rerunTests` has been removed. |
OLD | NEW |