Chromium Code Reviews| Index: doc/package_config.md |
| diff --git a/doc/package_config.md b/doc/package_config.md |
| index 5f169c503d33828484384d29b3c9e9cd9feec75b..b1c90b0bd9e5b0aa21c3fce9737f3001f6b2a89c 100644 |
| --- a/doc/package_config.md |
| +++ b/doc/package_config.md |
| @@ -39,6 +39,7 @@ tags: |
| * [`exclude_tags`](#exclude_tags) |
| * [`platforms`](#platforms) |
| * [`concurrency`](#concurrency) |
| + * [`pause_after_load`](#pause_after_load) |
| * [`pub_serve`](#pub_serve) |
| * [`reporter`](#reporter) |
| * [Configuring Tags](#configuring-tags) |
| @@ -283,6 +284,24 @@ If it's set to 1, only one test suite will run at a time. |
| concurrency: 3 |
| ``` |
| +### `pause_after_load` |
| + |
| +This field indicates that the test runner should pause for debugging after each |
| +test suite is loaded but before its tests are executed. If it's set, |
| +[`concurrency`](#concurrency) is automatically set to 1 and |
| +[`timeout`](#timeout) is automatically set to `none`. |
| + |
| +This is usually used in a [preset](#configuration-presets). |
| + |
| +```yaml |
| +presets: |
| + # Pass -P debug to enable debugging configuration |
|
kevmoo
2016/03/21 20:12:24
quotes (or something) around "-P debug" ?
nweiz
2016/03/21 20:27:54
Done.
|
| + debug: |
| + pause_after_load: true |
| + exclude_tags: undebuggable |
| + reporter: expanded |
| +``` |
| + |
| ### `pub_serve` |
| This field indicates that the test runner should run against a `pub serve` |