8 lines
330 B
JavaScript
8 lines
330 B
JavaScript
module.exports = {
|
|
default: {
|
|
require: ["step-definitions/**/*.js"], // make sure this path matches your actual step definitions folder
|
|
format: ["json:reports/cucumber-report.json"], // this will output a JSON report to the reports folder
|
|
publishQuiet: true, // suppress publish messages, good to keep clean
|
|
},
|
|
};
|