| OLD | NEW |
| 1 ## 0.12.4+3 |
| 2 |
| 3 * Make source maps work properly in the browser when not using `--pub-serve`. |
| 4 |
| 1 ## 0.12.4+2 | 5 ## 0.12.4+2 |
| 2 | 6 |
| 3 * Fix a memory leak when running many browser tests where old test suites failed | 7 * Fix a memory leak when running many browser tests where old test suites failed |
| 4 to be unloaded when they were supposed to. | 8 to be unloaded when they were supposed to. |
| 5 | 9 |
| 6 ## 0.12.4+1 | 10 ## 0.12.4+1 |
| 7 | 11 |
| 8 * Require Dart SDK >= `1.11.0` and `shelf` >= `0.6.0`, allowing `test` to remove | 12 * Require Dart SDK >= `1.11.0` and `shelf` >= `0.6.0`, allowing `test` to remove |
| 9 various hacks and workarounds. | 13 various hacks and workarounds. |
| 10 | 14 |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 276 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 273 `expectAsyncUntil1` and `expectAsyncUntil2` | 277 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 274 * `TestCase`: | 278 * `TestCase`: |
| 275 * Removed properties: `setUp`, `tearDown`, `testFunction` | 279 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 276 * `enabled` is now get-only | 280 * `enabled` is now get-only |
| 277 * Removed methods: `pass`, `fail`, `error` | 281 * Removed methods: `pass`, `fail`, `error` |
| 278 * `interactive_html_config.dart` has been removed. | 282 * `interactive_html_config.dart` has been removed. |
| 279 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 283 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 280 `solo_group` now throw a `StateError` if called while tests are running. | 284 `solo_group` now throw a `StateError` if called while tests are running. |
| 281 * `rerunTests` has been removed. | 285 * `rerunTests` has been removed. |
| OLD | NEW |