You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you need to export test results to a file (when running as part of a CI process for example), you can use a combination `--output-directory` and `--output-format`.
150
+
151
+
`--output-directory` defines if and where to put the test result files.
152
+
153
+
`--output-format` defines which format use for the test result file, it can be `jest` or `junit`. The default if format is not specified is `jest`
154
+
155
+
#### Examples
156
+
157
+
```sh
158
+
selenium-side-runner --output-directory=results
159
+
```
160
+
161
+
Will output results in `jest` frormat in `./results/projectName.json'
Will output results in `junit` frormat in `./results/projectName.xml'
174
+
147
175
## A framework at your fingertips
148
176
149
177
There are also other niceties that come out of the box with the runner. Things you would expect to be available in a traditional test automation framework.
0 commit comments