OLD | NEW |
| 1 ## 0.12.5 |
| 2 |
| 3 * Allow `setUp()` and `tearDown()` to be called multiple times within the same |
| 4 group. |
| 5 |
1 ## 0.12.4+9 | 6 ## 0.12.4+9 |
2 | 7 |
3 * If a `tearDown()` callback throws an error, outer `tearDown()` callbacks are | 8 * If a `tearDown()` callback throws an error, outer `tearDown()` callbacks are |
4 still executed. | 9 still executed. |
5 | 10 |
6 ## 0.12.4+8 | 11 ## 0.12.4+8 |
7 | 12 |
8 * Don't compile tests to JavaScript when running via `pub serve` on Dartium or | 13 * Don't compile tests to JavaScript when running via `pub serve` on Dartium or |
9 content shell. | 14 content shell. |
10 | 15 |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 307 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
303 `expectAsyncUntil1` and `expectAsyncUntil2` | 308 `expectAsyncUntil1` and `expectAsyncUntil2` |
304 * `TestCase`: | 309 * `TestCase`: |
305 * Removed properties: `setUp`, `tearDown`, `testFunction` | 310 * Removed properties: `setUp`, `tearDown`, `testFunction` |
306 * `enabled` is now get-only | 311 * `enabled` is now get-only |
307 * Removed methods: `pass`, `fail`, `error` | 312 * Removed methods: `pass`, `fail`, `error` |
308 * `interactive_html_config.dart` has been removed. | 313 * `interactive_html_config.dart` has been removed. |
309 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 314 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
310 `solo_group` now throw a `StateError` if called while tests are running. | 315 `solo_group` now throw a `StateError` if called while tests are running. |
311 * `rerunTests` has been removed. | 316 * `rerunTests` has been removed. |
OLD | NEW |