OLD | NEW |
| 1 ## 0.12.1 |
| 2 |
| 3 * Add a `--verbose-trace` flag to include core library frames in stack traces. |
| 4 |
1 ## 0.12.0 | 5 ## 0.12.0 |
2 | 6 |
3 ### Test Runner | 7 ### Test Runner |
4 | 8 |
5 `0.12.0` adds support for a test runner, which can be run via `pub run | 9 `0.12.0` adds support for a test runner, which can be run via `pub run |
6 test:test` (or `pub run test` in Dart 1.10). By default it runs all files | 10 test:test` (or `pub run test` in Dart 1.10). By default it runs all files |
7 recursively in the `test/` directory that end in `_test.dart` and aren't in a | 11 recursively in the `test/` directory that end in `_test.dart` and aren't in a |
8 `packages/` directory. | 12 `packages/` directory. |
9 | 13 |
10 The test runner supports running tests on the Dart VM and many different | 14 The test runner supports running tests on the Dart VM and many different |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 148 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
145 `expectAsyncUntil1` and `expectAsyncUntil2` | 149 `expectAsyncUntil1` and `expectAsyncUntil2` |
146 * `TestCase`: | 150 * `TestCase`: |
147 * Removed properties: `setUp`, `tearDown`, `testFunction` | 151 * Removed properties: `setUp`, `tearDown`, `testFunction` |
148 * `enabled` is now get-only | 152 * `enabled` is now get-only |
149 * Removed methods: `pass`, `fail`, `error` | 153 * Removed methods: `pass`, `fail`, `error` |
150 * `interactive_html_config.dart` has been removed. | 154 * `interactive_html_config.dart` has been removed. |
151 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 155 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
152 `solo_group` now throw a `StateError` if called while tests are running. | 156 `solo_group` now throw a `StateError` if called while tests are running. |
153 * `rerunTests` has been removed. | 157 * `rerunTests` has been removed. |
OLD | NEW |