Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 0.12.9 | 1 ## 0.12.9 |
| 2 | 2 |
| 3 * Add `SuiteEvent` to the JSON reporter, which reports data about the suites in | 3 * Add `SuiteEvent` to the JSON reporter, which reports data about the suites in |
| 4 which tests are run. | 4 which tests are run. |
| 5 | 5 |
| 6 * Add `AllSuitesEvent` to the JSON reporter, which reports the total number of | |
| 7 suites that will be run. | |
| 8 | |
| 9 * Add `GroupEvent.testCount` to the JSON reporter, which reports the total | |
|
alexander.doroshko
2016/02/02 11:02:28
Group.testCount is added, not GroupEvent.testCount
| |
| 10 number of tests in each group. | |
| 11 | |
| 6 ## 0.12.8 | 12 ## 0.12.8 |
| 7 | 13 |
| 8 * Organize the `--help` output into sections. | 14 * Organize the `--help` output into sections. |
| 9 | 15 |
| 10 * Add a `--timeout` flag. | 16 * Add a `--timeout` flag. |
| 11 | 17 |
| 12 ## 0.12.7 | 18 ## 0.12.7 |
| 13 | 19 |
| 14 * Add the ability to re-run tests while debugging. When the browser is paused at | 20 * Add the ability to re-run tests while debugging. When the browser is paused at |
| 15 a breakpoint, the test runner will open an interactive console on the command | 21 a breakpoint, the test runner will open an interactive console on the command |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 378 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 384 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
| 379 `expectAsyncUntil1` and `expectAsyncUntil2` | 385 `expectAsyncUntil1` and `expectAsyncUntil2` |
| 380 * `TestCase`: | 386 * `TestCase`: |
| 381 * Removed properties: `setUp`, `tearDown`, `testFunction` | 387 * Removed properties: `setUp`, `tearDown`, `testFunction` |
| 382 * `enabled` is now get-only | 388 * `enabled` is now get-only |
| 383 * Removed methods: `pass`, `fail`, `error` | 389 * Removed methods: `pass`, `fail`, `error` |
| 384 * `interactive_html_config.dart` has been removed. | 390 * `interactive_html_config.dart` has been removed. |
| 385 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 391 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
| 386 `solo_group` now throw a `StateError` if called while tests are running. | 392 `solo_group` now throw a `StateError` if called while tests are running. |
| 387 * `rerunTests` has been removed. | 393 * `rerunTests` has been removed. |
| OLD | NEW |