| OLD | NEW |
| 1 ## 0.12.4 | 1 ## 0.12.3+2 |
| 2 | 2 |
| 3 * Improve the display of syntax errors in VM tests. | 3 * Improve the display of syntax errors in VM tests. |
| 4 | 4 |
| 5 * Work around a [Firefox bug][]. Computed styles now work in tests on Firefox. | 5 * Work around a [Firefox bug][]. Computed styles now work in tests on Firefox. |
| 6 | 6 |
| 7 [Firefox bug]: https://bugzilla.mozilla.org/show_bug.cgi?id=548397 | 7 [Firefox bug]: https://bugzilla.mozilla.org/show_bug.cgi?id=548397 |
| 8 | 8 |
| 9 * Fix a bug where VM tests would be loaded from the wrong URLs on Windows (or in |
| 10 special circumstances on other operating systems). |
| 11 |
| 9 ## 0.12.3+1 | 12 ## 0.12.3+1 |
| 10 | 13 |
| 11 * Fix a bug that caused the test runner to crash on Windows because symlink | 14 * Fix a bug that caused the test runner to crash on Windows because symlink |
| 12 resolution failed. | 15 resolution failed. |
| 13 | 16 |
| 14 ## 0.12.3 | 17 ## 0.12.3 |
| 15 | 18 |
| 16 * If a future matched against the `completes` or `completion()` matcher throws | 19 * If a future matched against the `completes` or `completion()` matcher throws |
| 17 an error, that error is printed directly rather than being wrapped in a | 20 an error, that error is printed directly rather than being wrapped in a |
| 18 string. This allows such errors to be captured using the Zone API and improves | 21 string. This allows such errors to be captured using the Zone API and improves |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 192 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 190 `expectAsyncUntil1` and `expectAsyncUntil2` | 193 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 191 * `TestCase`: | 194 * `TestCase`: |
| 192 * Removed properties: `setUp`, `tearDown`, `testFunction` | 195 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 193 * `enabled` is now get-only | 196 * `enabled` is now get-only |
| 194 * Removed methods: `pass`, `fail`, `error` | 197 * Removed methods: `pass`, `fail`, `error` |
| 195 * `interactive_html_config.dart` has been removed. | 198 * `interactive_html_config.dart` has been removed. |
| 196 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 199 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 197 `solo_group` now throw a `StateError` if called while tests are running. | 200 `solo_group` now throw a `StateError` if called while tests are running. |
| 198 * `rerunTests` has been removed. | 201 * `rerunTests` has been removed. |
| OLD | NEW |