OLD | NEW |
---|---|
1 ## 0.12.3 | |
2 | |
3 * In order to be more extensible, all exception handling within tests now uses | |
4 the Zone API. | |
kevmoo
2015/05/29 20:51:16
Do we that invoker.handError is now private? I'm g
nweiz
2015/05/29 20:53:38
Invoker isn't exposed publicly, so this isn't an e
| |
5 | |
1 ## 0.12.2 | 6 ## 0.12.2 |
2 | 7 |
3 * Convert JavaScript stack traces into Dart stack traces using source maps. This | 8 * Convert JavaScript stack traces into Dart stack traces using source maps. This |
4 can be disabled with the new `--js-trace` flag. | 9 can be disabled with the new `--js-trace` flag. |
5 | 10 |
6 * Improve the browser test suite timeout logic to avoid timeouts when running | 11 * Improve the browser test suite timeout logic to avoid timeouts when running |
7 many browser suites at once. | 12 many browser suites at once. |
8 | 13 |
9 ## 0.12.1 | 14 ## 0.12.1 |
10 | 15 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
156 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 161 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
157 `expectAsyncUntil1` and `expectAsyncUntil2` | 162 `expectAsyncUntil1` and `expectAsyncUntil2` |
158 * `TestCase`: | 163 * `TestCase`: |
159 * Removed properties: `setUp`, `tearDown`, `testFunction` | 164 * Removed properties: `setUp`, `tearDown`, `testFunction` |
160 * `enabled` is now get-only | 165 * `enabled` is now get-only |
161 * Removed methods: `pass`, `fail`, `error` | 166 * Removed methods: `pass`, `fail`, `error` |
162 * `interactive_html_config.dart` has been removed. | 167 * `interactive_html_config.dart` has been removed. |
163 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 168 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
164 `solo_group` now throw a `StateError` if called while tests are running. | 169 `solo_group` now throw a `StateError` if called while tests are running. |
165 * `rerunTests` has been removed. | 170 * `rerunTests` has been removed. |
OLD | NEW |