Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated documentation for using multiple reporters #2937

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,10 +416,11 @@ argument object.**
### Configuring Reporters

- `-r <reporter-name>`, `--reporters <reporter-name>`<br />
Specify one reporter name as `string` or provide more than one reporter name as a comma separated list of reporter names. Available reporters are: `cli`, `json`, `junit`, `progress` and `emojitrain`.<br/><br/>
Specify one reporter name as `string` or provide more than one reporter name as a comma separated list of reporter names _(wrapped in single quotes)_. Available reporters are: `cli`, `json`, `junit`, `progress` and `emojitrain`.<br/><br/>
Spaces should **not** be used between reporter names / commas whilst specifying a comma separated list of reporters. For instance:<br/><br/>
:white_check_mark: `-r cli,json,junit`<br/>
:x: `-r cli , json,junit`
:white_check_mark: `-r 'cli,json,junit'`<br/>
:x: `-r cli 'json, junit'`
:x: `-r cli 'json junit'`

- `--reporter-{{reporter-name}}-{{reporter-option}}`<br />
When multiple reporters are provided, if one needs to specifically override or provide an option to one reporter, this
Expand Down