OLD | NEW |
1 ## 0.12.3 | 1 ## 0.12.3 |
2 | 2 |
3 * If a future matched against the `completes` or `completion()` matcher throws | 3 * If a future matched against the `completes` or `completion()` matcher throws |
4 an error, that error is printed directly rather than being wrapped in a | 4 an error, that error is printed directly rather than being wrapped in a |
5 string. This allows such errors to be captured using the Zone API and improves | 5 string. This allows such errors to be captured using the Zone API and improves |
6 formatting. | 6 formatting. |
7 | 7 |
| 8 * Improve support for Polymer tests. This fixes a flaky time-out error and adds |
| 9 support for Dartifying JavaScript stack traces when running Polymer tests via |
| 10 `pub serve`. |
| 11 |
8 * In order to be more extensible, all exception handling within tests now uses | 12 * In order to be more extensible, all exception handling within tests now uses |
9 the Zone API. | 13 the Zone API. |
10 | 14 |
11 * Add a heartbeat to reset a test's timeout whenever the test interacts with the | 15 * Add a heartbeat to reset a test's timeout whenever the test interacts with the |
12 test infrastructure. | 16 test infrastructure. |
13 | 17 |
14 * `expect()`, `expectAsync()`, and `expectAsyncUntil()` throw more useful errors | 18 * `expect()`, `expectAsync()`, and `expectAsyncUntil()` throw more useful errors |
15 if called outside a test body. | 19 if called outside a test body. |
16 | 20 |
17 ## 0.12.2 | 21 ## 0.12.2 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 176 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
173 `expectAsyncUntil1` and `expectAsyncUntil2` | 177 `expectAsyncUntil1` and `expectAsyncUntil2` |
174 * `TestCase`: | 178 * `TestCase`: |
175 * Removed properties: `setUp`, `tearDown`, `testFunction` | 179 * Removed properties: `setUp`, `tearDown`, `testFunction` |
176 * `enabled` is now get-only | 180 * `enabled` is now get-only |
177 * Removed methods: `pass`, `fail`, `error` | 181 * Removed methods: `pass`, `fail`, `error` |
178 * `interactive_html_config.dart` has been removed. | 182 * `interactive_html_config.dart` has been removed. |
179 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 183 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
180 `solo_group` now throw a `StateError` if called while tests are running. | 184 `solo_group` now throw a `StateError` if called while tests are running. |
181 * `rerunTests` has been removed. | 185 * `rerunTests` has been removed. |
OLD | NEW |