| OLD | NEW |
| 1 ## 0.12.4 | 1 ## 0.12.4 |
| 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. |
| 6 |
| 7 [Firefox bug]: https://bugzilla.mozilla.org/show_bug.cgi?id=548397 |
| 8 |
| 5 ## 0.12.3+1 | 9 ## 0.12.3+1 |
| 6 | 10 |
| 7 * Fix a bug that caused the test runner to crash on Windows because symlink | 11 * Fix a bug that caused the test runner to crash on Windows because symlink |
| 8 resolution failed. | 12 resolution failed. |
| 9 | 13 |
| 10 ## 0.12.3 | 14 ## 0.12.3 |
| 11 | 15 |
| 12 * If a future matched against the `completes` or `completion()` matcher throws | 16 * If a future matched against the `completes` or `completion()` matcher throws |
| 13 an error, that error is printed directly rather than being wrapped in a | 17 an error, that error is printed directly rather than being wrapped in a |
| 14 string. This allows such errors to be captured using the Zone API and improves | 18 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... |
| 185 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 189 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 186 `expectAsyncUntil1` and `expectAsyncUntil2` | 190 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 187 * `TestCase`: | 191 * `TestCase`: |
| 188 * Removed properties: `setUp`, `tearDown`, `testFunction` | 192 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 189 * `enabled` is now get-only | 193 * `enabled` is now get-only |
| 190 * Removed methods: `pass`, `fail`, `error` | 194 * Removed methods: `pass`, `fail`, `error` |
| 191 * `interactive_html_config.dart` has been removed. | 195 * `interactive_html_config.dart` has been removed. |
| 192 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 196 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 193 `solo_group` now throw a `StateError` if called while tests are running. | 197 `solo_group` now throw a `StateError` if called while tests are running. |
| 194 * `rerunTests` has been removed. | 198 * `rerunTests` has been removed. |
| OLD | NEW |