cypress-cucumber-boilerplate
cypress-cucumber-boilerplate copied to clipboard
StepDefinitions configuration
Hi @JoanEsquivel , I'm trying to make configuration for my project Cypress and I'm facing some issues when trying to run the test I'm having the issue if different features have the same Given entry point massage.
How can I edit the stepDefinition inside my .cypress-cucumber-preprocessorrc
.
This is my .cypress-cucumber-preprocessorrc
file configuration.
{
"json": {
"enabled": true,
"output": "json-logs/report.json",
"formatter": "./jsonFormatter/cucumber-json-formatter.exe"
},
"messages": {
"enabled": false,
"output": "json-logs/messages.ndjson"
},
"html": {
"enabled": false,
"output": "cucumber-reporter.html"
},
"nonGlobalStepDefinitions": false,
"stepDefinitions": ["cypress/e2e/step_definitions/**/*.{js,ts}"]
}