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
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -298,22 +298,22 @@ and add the following to the cypress-cucumber-preprocessor section in package.js
298
298
"cypress-cucumber-preprocessor": {
299
299
"cucumberJson": {
300
300
"generate":true,
301
-
"outputFolder":"cucumber-json",
302
-
"filePrefix":"cucumber-",
303
-
"fileSuffix":""
301
+
"outputFolder":"cypress/cucumber-json",
302
+
"filePrefix":"",
303
+
"fileSuffix":".cucumber"
304
304
}
305
305
}
306
306
```
307
307
308
308
Here:
309
309
310
-
outputFolder: The folder to write the files to, defaults to ```./cypress/cucumber-json```
310
+
outputFolder: The folder to write the files to, defaults to ```cypress/cucumber-json```
311
311
312
-
filePrefix: A separate json file is generated for each feature based on the name of the feature file. All generated file names will be prefixed with this option if specified.
312
+
filePrefix: A separate json file is generated for each feature based on the name of the feature file. All generated file names will be prefixed with this option if specified. Empty string (no prefix) by default.
313
313
314
314
fileSuffix: A suffix to add to each generated filename, defaults to '.cucumber'
315
315
316
-
generate: Flag, output cucumber.json or not, defaults to true.
316
+
generate: Flag, output cucumber.json or not, defaults to false.
0 commit comments