OLD | NEW |
| 1 ## 0.12.3+4 |
| 2 |
| 3 * The compact reporter will update the timer every second, rather than only |
| 4 updating it occasionally. |
| 5 |
| 6 * The compact reporter will now print the full, untruncated test name before any |
| 7 errors or prints emitted by a test. |
| 8 |
| 9 * The expanded reporter will now *always* print the full, untruncated test name. |
| 10 |
1 ## 0.12.3+3 | 11 ## 0.12.3+3 |
2 | 12 |
3 * Limit the number of test suites loaded at once. This helps ensure that the | 13 * Limit the number of test suites loaded at once. This helps ensure that the |
4 test runner won't run out of memory when running many test suites that each | 14 test runner won't run out of memory when running many test suites that each |
5 load a large amount of code. | 15 load a large amount of code. |
6 | 16 |
7 ## 0.12.3+2 | 17 ## 0.12.3+2 |
8 | 18 |
9 * Improve the display of syntax errors in VM tests. | 19 * Improve the display of syntax errors in VM tests. |
10 | 20 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 208 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
199 `expectAsyncUntil1` and `expectAsyncUntil2` | 209 `expectAsyncUntil1` and `expectAsyncUntil2` |
200 * `TestCase`: | 210 * `TestCase`: |
201 * Removed properties: `setUp`, `tearDown`, `testFunction` | 211 * Removed properties: `setUp`, `tearDown`, `testFunction` |
202 * `enabled` is now get-only | 212 * `enabled` is now get-only |
203 * Removed methods: `pass`, `fail`, `error` | 213 * Removed methods: `pass`, `fail`, `error` |
204 * `interactive_html_config.dart` has been removed. | 214 * `interactive_html_config.dart` has been removed. |
205 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 215 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
206 `solo_group` now throw a `StateError` if called while tests are running. | 216 `solo_group` now throw a `StateError` if called while tests are running. |
207 * `rerunTests` has been removed. | 217 * `rerunTests` has been removed. |
OLD | NEW |