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
Add this plugin to your Gauge project by registering it in `manifest.json` file. You can also do this by:
30
+
31
+
```
32
+
gauge --add-plugin json-report
33
+
```
34
+
35
+
By default, reports are generated in `reports/json-report` directory of your Gauge project. You can set a custom location by setting the below mentioned property in `default.properties` file of `env/default` directory.
36
+
37
+
```
38
+
#The path to the gauge reports directory. Should be either relative to the project directory or an absolute path
39
+
gauge_reports_dir = reports
40
+
```
41
+
42
+
You can also choose to override the reports after each execution or retain all of them as follows.
43
+
44
+
```
45
+
#Set as false if gauge reports should not be overwritten on each execution. A new time-stamped directory will be created on each execution.
0 commit comments