| OLD | NEW |
| 1 ## 0.12.2 |
| 2 |
| 3 * Improve the browser test suite timeout logic to avoid timeouts when running |
| 4 many browser suites at once. |
| 5 |
| 1 ## 0.12.1 | 6 ## 0.12.1 |
| 2 | 7 |
| 3 * Add a `--verbose-trace` flag to include core library frames in stack traces. | 8 * Add a `--verbose-trace` flag to include core library frames in stack traces. |
| 4 | 9 |
| 5 ## 0.12.0 | 10 ## 0.12.0 |
| 6 | 11 |
| 7 ### Test Runner | 12 ### Test Runner |
| 8 | 13 |
| 9 `0.12.0` adds support for a test runner, which can be run via `pub run | 14 `0.12.0` adds support for a test runner, which can be run via `pub run |
| 10 test:test` (or `pub run test` in Dart 1.10). By default it runs all files | 15 test:test` (or `pub run test` in Dart 1.10). By default it runs all files |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 153 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 149 `expectAsyncUntil1` and `expectAsyncUntil2` | 154 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 150 * `TestCase`: | 155 * `TestCase`: |
| 151 * Removed properties: `setUp`, `tearDown`, `testFunction` | 156 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 152 * `enabled` is now get-only | 157 * `enabled` is now get-only |
| 153 * Removed methods: `pass`, `fail`, `error` | 158 * Removed methods: `pass`, `fail`, `error` |
| 154 * `interactive_html_config.dart` has been removed. | 159 * `interactive_html_config.dart` has been removed. |
| 155 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 160 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 156 `solo_group` now throw a `StateError` if called while tests are running. | 161 `solo_group` now throw a `StateError` if called while tests are running. |
| 157 * `rerunTests` has been removed. | 162 * `rerunTests` has been removed. |
| OLD | NEW |