| OLD | NEW |
| 1 ## 0.12.4 | 1 ## 0.12.4 |
| 2 | 2 |
| 3 * Add a `--pause-after-load` flag that pauses the test runner after each suite | 3 * Add a `--pause-after-load` flag that pauses the test runner after each suite |
| 4 is loaded so that breakpoints and other debugging annotations can be added. | 4 is loaded so that breakpoints and other debugging annotations can be added. |
| 5 Currently this is only supported on browsers. | 5 Currently this is only supported on browsers. |
| 6 | 6 |
| 7 * Add a `Timeout.none` value indicating that a test should never time out. |
| 8 |
| 7 ## 0.12.3+8 | 9 ## 0.12.3+8 |
| 8 | 10 |
| 9 * Fix an uncaught error that could crop up when killing the test runner process | 11 * Fix an uncaught error that could crop up when killing the test runner process |
| 10 at the wrong time. | 12 at the wrong time. |
| 11 | 13 |
| 12 ## 0.12.3+7 | 14 ## 0.12.3+7 |
| 13 | 15 |
| 14 * Add a missing dependency on the `collection` package. | 16 * Add a missing dependency on the `collection` package. |
| 15 | 17 |
| 16 ## 0.12.3+6 | 18 ## 0.12.3+6 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 249 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 248 `expectAsyncUntil1` and `expectAsyncUntil2` | 250 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 249 * `TestCase`: | 251 * `TestCase`: |
| 250 * Removed properties: `setUp`, `tearDown`, `testFunction` | 252 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 251 * `enabled` is now get-only | 253 * `enabled` is now get-only |
| 252 * Removed methods: `pass`, `fail`, `error` | 254 * Removed methods: `pass`, `fail`, `error` |
| 253 * `interactive_html_config.dart` has been removed. | 255 * `interactive_html_config.dart` has been removed. |
| 254 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 256 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 255 `solo_group` now throw a `StateError` if called while tests are running. | 257 `solo_group` now throw a `StateError` if called while tests are running. |
| 256 * `rerunTests` has been removed. | 258 * `rerunTests` has been removed. |
| OLD | NEW |