| OLD | NEW |
| 1 ## 0.12.3+7 |
| 2 |
| 3 * Add a missing dependency on the `collection` package. |
| 4 |
| 1 ## 0.12.3+6 | 5 ## 0.12.3+6 |
| 2 | 6 |
| 7 **This version was unpublished due to [issue 287][].** |
| 8 |
| 3 * Properly report load errors caused by failing to start browsers. | 9 * Properly report load errors caused by failing to start browsers. |
| 4 | 10 |
| 5 * Substantially increase browser timeouts. These timeouts are the cause of a lot | 11 * Substantially increase browser timeouts. These timeouts are the cause of a lot |
| 6 of flakiness, and now that they don't block test running there's less harm in | 12 of flakiness, and now that they don't block test running there's less harm in |
| 7 making them longer. | 13 making them longer. |
| 8 | 14 |
| 9 ## 0.12.3+5 | 15 ## 0.12.3+5 |
| 10 | 16 |
| 17 **This version was unpublished due to [issue 287][].** |
| 18 |
| 11 * Fix a crash when skipping tests because their platforms don't match. | 19 * Fix a crash when skipping tests because their platforms don't match. |
| 12 | 20 |
| 13 ## 0.12.3+4 | 21 ## 0.12.3+4 |
| 14 | 22 |
| 23 **This version was unpublished due to [issue 287][].** |
| 24 |
| 15 * The compact reporter will update the timer every second, rather than only | 25 * The compact reporter will update the timer every second, rather than only |
| 16 updating it occasionally. | 26 updating it occasionally. |
| 17 | 27 |
| 18 * The compact reporter will now print the full, untruncated test name before any | 28 * The compact reporter will now print the full, untruncated test name before any |
| 19 errors or prints emitted by a test. | 29 errors or prints emitted by a test. |
| 20 | 30 |
| 21 * The expanded reporter will now *always* print the full, untruncated test name. | 31 * The expanded reporter will now *always* print the full, untruncated test name. |
| 22 | 32 |
| 23 ## 0.12.3+3 | 33 ## 0.12.3+3 |
| 24 | 34 |
| 35 **This version was unpublished due to [issue 287][].** |
| 36 |
| 25 * Limit the number of test suites loaded at once. This helps ensure that the | 37 * Limit the number of test suites loaded at once. This helps ensure that the |
| 26 test runner won't run out of memory when running many test suites that each | 38 test runner won't run out of memory when running many test suites that each |
| 27 load a large amount of code. | 39 load a large amount of code. |
| 28 | 40 |
| 29 ## 0.12.3+2 | 41 ## 0.12.3+2 |
| 30 | 42 |
| 43 **This version was unpublished due to [issue 287][].** |
| 44 |
| 45 [issue 287]: https://github.com/dart-lang/test/issues/287 |
| 46 |
| 31 * Improve the display of syntax errors in VM tests. | 47 * Improve the display of syntax errors in VM tests. |
| 32 | 48 |
| 33 * Work around a [Firefox bug][]. Computed styles now work in tests on Firefox. | 49 * Work around a [Firefox bug][]. Computed styles now work in tests on Firefox. |
| 34 | 50 |
| 35 [Firefox bug]: https://bugzilla.mozilla.org/show_bug.cgi?id=548397 | 51 [Firefox bug]: https://bugzilla.mozilla.org/show_bug.cgi?id=548397 |
| 36 | 52 |
| 37 * Fix a bug where VM tests would be loaded from the wrong URLs on Windows (or in | 53 * Fix a bug where VM tests would be loaded from the wrong URLs on Windows (or in |
| 38 special circumstances on other operating systems). | 54 special circumstances on other operating systems). |
| 39 | 55 |
| 40 ## 0.12.3+1 | 56 ## 0.12.3+1 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 236 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 221 `expectAsyncUntil1` and `expectAsyncUntil2` | 237 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 222 * `TestCase`: | 238 * `TestCase`: |
| 223 * Removed properties: `setUp`, `tearDown`, `testFunction` | 239 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 224 * `enabled` is now get-only | 240 * `enabled` is now get-only |
| 225 * Removed methods: `pass`, `fail`, `error` | 241 * Removed methods: `pass`, `fail`, `error` |
| 226 * `interactive_html_config.dart` has been removed. | 242 * `interactive_html_config.dart` has been removed. |
| 227 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 243 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 228 `solo_group` now throw a `StateError` if called while tests are running. | 244 `solo_group` now throw a `StateError` if called while tests are running. |
| 229 * `rerunTests` has been removed. | 245 * `rerunTests` has been removed. |
| OLD | NEW |