OLD | NEW |
1 ## 0.12.3+9 | 1 ## 0.12.4 |
2 | 2 |
3 * Widen the constraint on `analyzer` to include `0.26.0`. | |
4 | |
5 ## 0.12.3+8 | |
6 | |
7 * Add a `--pause-after-load` flag that pauses the test runner after each suite | 3 * Add a `--pause-after-load` flag that pauses the test runner after each suite |
8 is loaded so that breakpoints and other debugging annotations can be added. | 4 is loaded so that breakpoints and other debugging annotations can be added. |
9 Currently this is only supported on browsers. | 5 Currently this is only supported on browsers. |
10 | 6 |
11 * Add a `Timeout.none` value indicating that a test should never time out. | 7 * Add a `Timeout.none` value indicating that a test should never time out. |
12 | 8 |
13 * The `dart-vm` platform selector variable is now `true` for Dartium and content | 9 * The `dart-vm` platform selector variable is now `true` for Dartium and content |
14 shell. | 10 shell. |
15 | 11 |
| 12 * The compact reporter no longer prints status lines that only update the clock |
| 13 if they would get in the way of messages or errors from a test. |
| 14 |
| 15 ## 0.12.3+9 |
| 16 |
| 17 * Widen the constraint on `analyzer` to include `0.26.0`. |
| 18 |
16 ## 0.12.3+8 | 19 ## 0.12.3+8 |
17 | 20 |
18 * Fix an uncaught error that could crop up when killing the test runner process | 21 * Fix an uncaught error that could crop up when killing the test runner process |
19 at the wrong time. | 22 at the wrong time. |
20 | 23 |
21 ## 0.12.3+7 | 24 ## 0.12.3+7 |
22 | 25 |
23 * Add a missing dependency on the `collection` package. | 26 * Add a missing dependency on the `collection` package. |
24 | 27 |
25 ## 0.12.3+6 | 28 ## 0.12.3+6 |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 259 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
257 `expectAsyncUntil1` and `expectAsyncUntil2` | 260 `expectAsyncUntil1` and `expectAsyncUntil2` |
258 * `TestCase`: | 261 * `TestCase`: |
259 * Removed properties: `setUp`, `tearDown`, `testFunction` | 262 * Removed properties: `setUp`, `tearDown`, `testFunction` |
260 * `enabled` is now get-only | 263 * `enabled` is now get-only |
261 * Removed methods: `pass`, `fail`, `error` | 264 * Removed methods: `pass`, `fail`, `error` |
262 * `interactive_html_config.dart` has been removed. | 265 * `interactive_html_config.dart` has been removed. |
263 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 266 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
264 `solo_group` now throw a `StateError` if called while tests are running. | 267 `solo_group` now throw a `StateError` if called while tests are running. |
265 * `rerunTests` has been removed. | 268 * `rerunTests` has been removed. |
OLD | NEW |