| OLD | NEW |
| 1 ## 0.12.12 | 1 ## 0.12.12 |
| 2 | 2 |
| 3 * Add an `on_os` field to the package configuration file that allows users to |
| 4 select different configuration for different operating systems. |
| 5 |
| 6 * Add an `on_platform` field to the package configuration file that allows users |
| 7 to configure all tests differently depending on which platform they run on. |
| 8 |
| 3 * Add an `ios` platform selector variable. This variable will only be true when | 9 * Add an `ios` platform selector variable. This variable will only be true when |
| 4 the `test` executable itself is running on iOS, not when it's running browser | 10 the `test` executable itself is running on iOS, not when it's running browser |
| 5 tests on an iOS browser. | 11 tests on an iOS browser. |
| 6 | 12 |
| 7 ## 0.12.11+1 | 13 ## 0.12.11+1 |
| 8 | 14 |
| 9 * Purely internal change. | 15 * Purely internal change. |
| 10 | 16 |
| 11 ## 0.12.11 | 17 ## 0.12.11 |
| 12 | 18 |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 428 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 423 `expectAsyncUntil1` and `expectAsyncUntil2` | 429 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 424 * `TestCase`: | 430 * `TestCase`: |
| 425 * Removed properties: `setUp`, `tearDown`, `testFunction` | 431 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 426 * `enabled` is now get-only | 432 * `enabled` is now get-only |
| 427 * Removed methods: `pass`, `fail`, `error` | 433 * Removed methods: `pass`, `fail`, `error` |
| 428 * `interactive_html_config.dart` has been removed. | 434 * `interactive_html_config.dart` has been removed. |
| 429 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 435 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 430 `solo_group` now throw a `StateError` if called while tests are running. | 436 `solo_group` now throw a `StateError` if called while tests are running. |
| 431 * `rerunTests` has been removed. | 437 * `rerunTests` has been removed. |
| OLD | NEW |