OLD | NEW |
---|---|
1 ## 0.12.7 | 1 ## 0.12.7 |
2 | 2 |
3 * Add the ability to re-run tests while debugging. When the browser is paused at | |
4 a breakpoint, the test runner will open an interactive console on the command | |
5 line that can be used to restart the test. | |
6 | |
3 * Add the ability to tag tests. Tests with specific tags may be run by passing | 7 * Add the ability to tag tests. Tests with specific tags may be run by passing |
4 the `--tags` command-line argument, or excluded by passing the | 8 the `--tags` command-line argument, or excluded by passing the |
5 `--exclude-tags` parameter. | 9 `--exclude-tags` parameter. |
6 | 10 |
7 This feature is not yet complete. For now, tags are only intended to be added | 11 This feature is not yet complete. For now, tags are only intended to be added |
8 temporarily to enable use-cases like [focusing][] on a specific test or group. | 12 temporarily to enable use-cases like [focusing][] on a specific test or group. |
9 Further development can be followed on [the issue tracker][issue 16]. | 13 Further development can be followed on [the issue tracker][issue 16]. |
10 | 14 |
11 [focusing]: http://jasmine.github.io/2.1/focused_specs.html | 15 [focusing]: http://jasmine.github.io/2.1/focused_specs.html |
12 [issue 16]: https://github.com/dart-lang/test/issues/16 | 16 [issue 16]: https://github.com/dart-lang/test/issues/16 |
13 | 17 |
18 ## 0.12.6+1 | |
kevmoo
2016/01/07 21:34:00
you might could clean up the rebase here
...+2, r
nweiz
2016/01/07 21:47:40
I have no idea why this showed up in the diff, sin
| |
19 | |
20 * Declare compatibility with `http_parser` 2.0.0. | |
21 | |
22 ## 0.12.6+1 | |
23 | |
24 * Declare compatibility with `http_multi_server` 2.0.0. | |
25 | |
14 ## 0.12.6 | 26 ## 0.12.6 |
15 | 27 |
16 * Add a machine-readable JSON reporter. For details, see | 28 * Add a machine-readable JSON reporter. For details, see |
17 [the protocol documentation][json-protocol]. | 29 [the protocol documentation][json-protocol]. |
18 | 30 |
19 * Skipped groups now properly print skip messages. | 31 * Skipped groups now properly print skip messages. |
20 | 32 |
21 [json-protocol]: https://github.com/dart-lang/test/blob/master/json_reporter.md | 33 [json-protocol]: https://github.com/dart-lang/test/blob/master/json_reporter.md |
22 | 34 |
23 ## 0.12.5+2 | 35 ## 0.12.5+2 |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
350 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, | 362 * **NEW!** `expectAsyncUntil` replaces the now deprecated `expectAsyncUntil0`, |
351 `expectAsyncUntil1` and `expectAsyncUntil2` | 363 `expectAsyncUntil1` and `expectAsyncUntil2` |
352 * `TestCase`: | 364 * `TestCase`: |
353 * Removed properties: `setUp`, `tearDown`, `testFunction` | 365 * Removed properties: `setUp`, `tearDown`, `testFunction` |
354 * `enabled` is now get-only | 366 * `enabled` is now get-only |
355 * Removed methods: `pass`, `fail`, `error` | 367 * Removed methods: `pass`, `fail`, `error` |
356 * `interactive_html_config.dart` has been removed. | 368 * `interactive_html_config.dart` has been removed. |
357 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and | 369 * `runTests`, `tearDown`, `setUp`, `test`, `group`, `solo_test`, and |
358 `solo_group` now throw a `StateError` if called while tests are running. | 370 `solo_group` now throw a `StateError` if called while tests are running. |
359 * `rerunTests` has been removed. | 371 * `rerunTests` has been removed. |
OLD | NEW |