| OLD | NEW |
| 1 ## 0.12.3+1 |
| 2 |
| 3 * Fix a bug that caused the test runner to crash on Windows because symlink |
| 4 resolution failed. |
| 5 |
| 1 ## 0.12.3 | 6 ## 0.12.3 |
| 2 | 7 |
| 3 * If a future matched against the `completes` or `completion()` matcher throws | 8 * 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 | 9 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 | 10 string. This allows such errors to be captured using the Zone API and improves |
| 6 formatting. | 11 formatting. |
| 7 | 12 |
| 8 * Improve support for Polymer tests. This fixes a flaky time-out error and adds | 13 * 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 | 14 support for Dartifying JavaScript stack traces when running Polymer tests via |
| 10 `pub serve`. | 15 `pub serve`. |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 181 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 177 `expectAsyncUntil1` and `expectAsyncUntil2` | 182 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 178 * `TestCase`: | 183 * `TestCase`: |
| 179 * Removed properties: `setUp`, `tearDown`, `testFunction` | 184 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 180 * `enabled` is now get-only | 185 * `enabled` is now get-only |
| 181 * Removed methods: `pass`, `fail`, `error` | 186 * Removed methods: `pass`, `fail`, `error` |
| 182 * `interactive_html_config.dart` has been removed. | 187 * `interactive_html_config.dart` has been removed. |
| 183 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 188 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 184 `solo_group` now throw a `StateError` if called while tests are running. | 189 `solo_group` now throw a `StateError` if called while tests are running. |
| 185 * `rerunTests` has been removed. | 190 * `rerunTests` has been removed. |
| OLD | NEW |