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