OLD | NEW |
| 1 ## 0.12.4+2 |
| 2 |
| 3 * Fix a memory leak when running many browser tests where old test suites failed |
| 4 to be unloaded when they were supposed to. |
| 5 |
1 ## 0.12.4+1 | 6 ## 0.12.4+1 |
2 | 7 |
3 * Require Dart SDK >= `1.11.0` and `shelf` >= `0.6.0`, allowing `test` to remove | 8 * Require Dart SDK >= `1.11.0` and `shelf` >= `0.6.0`, allowing `test` to remove |
4 various hacks and workarounds. | 9 various hacks and workarounds. |
5 | 10 |
6 ## 0.12.4 | 11 ## 0.12.4 |
7 | 12 |
8 * Add a `--pause-after-load` flag that pauses the test runner after each suite | 13 * Add a `--pause-after-load` flag that pauses the test runner after each suite |
9 is loaded so that breakpoints and other debugging annotations can be added. | 14 is loaded so that breakpoints and other debugging annotations can be added. |
10 Currently this is only supported on browsers. | 15 Currently this is only supported on browsers. |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 272 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
268 `expectAsyncUntil1` and `expectAsyncUntil2` | 273 `expectAsyncUntil1` and `expectAsyncUntil2` |
269 * `TestCase`: | 274 * `TestCase`: |
270 * Removed properties: `setUp`, `tearDown`, `testFunction` | 275 * Removed properties: `setUp`, `tearDown`, `testFunction` |
271 * `enabled` is now get-only | 276 * `enabled` is now get-only |
272 * Removed methods: `pass`, `fail`, `error` | 277 * Removed methods: `pass`, `fail`, `error` |
273 * `interactive_html_config.dart` has been removed. | 278 * `interactive_html_config.dart` has been removed. |
274 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 279 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
275 `solo_group` now throw a `StateError` if called while tests are running. | 280 `solo_group` now throw a `StateError` if called while tests are running. |
276 * `rerunTests` has been removed. | 281 * `rerunTests` has been removed. |
OLD | NEW |