OLD | NEW |
| 1 ## 0.12.4+1 |
| 2 |
| 3 * Require Dart SDK >= `1.11.0` and `shelf` >= `0.6.0`, allowing `test` to remove |
| 4 various hacks and workarounds. |
| 5 |
1 ## 0.12.4 | 6 ## 0.12.4 |
2 | 7 |
3 * Add a `--pause-after-load` flag that pauses the test runner after each suite | 8 * Add a `--pause-after-load` flag that pauses the test runner after each suite |
4 is loaded so that breakpoints and other debugging annotations can be added. | 9 is loaded so that breakpoints and other debugging annotations can be added. |
5 Currently this is only supported on browsers. | 10 Currently this is only supported on browsers. |
6 | 11 |
7 * Add a `Timeout.none` value indicating that a test should never time out. | 12 * Add a `Timeout.none` value indicating that a test should never time out. |
8 | 13 |
9 * The `dart-vm` platform selector variable is now `true` for Dartium and content | 14 * The `dart-vm` platform selector variable is now `true` for Dartium and content |
10 shell. | 15 shell. |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 267 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
263 `expectAsyncUntil1` and `expectAsyncUntil2` | 268 `expectAsyncUntil1` and `expectAsyncUntil2` |
264 * `TestCase`: | 269 * `TestCase`: |
265 * Removed properties: `setUp`, `tearDown`, `testFunction` | 270 * Removed properties: `setUp`, `tearDown`, `testFunction` |
266 * `enabled` is now get-only | 271 * `enabled` is now get-only |
267 * Removed methods: `pass`, `fail`, `error` | 272 * Removed methods: `pass`, `fail`, `error` |
268 * `interactive_html_config.dart` has been removed. | 273 * `interactive_html_config.dart` has been removed. |
269 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 274 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
270 `solo_group` now throw a `StateError` if called while tests are running. | 275 `solo_group` now throw a `StateError` if called while tests are running. |
271 * `rerunTests` has been removed. | 276 * `rerunTests` has been removed. |
OLD | NEW |