Skip to content

Instantly share code, notes, and snippets.

@medvedev1088
Created September 23, 2024 15:16
Show Gist options
  • Save medvedev1088/a181b2a9abae73c25562d2c86b6b1577 to your computer and use it in GitHub Desktop.
Save medvedev1088/a181b2a9abae73c25562d2c86b6b1577 to your computer and use it in GitHub Desktop.
@CucumberOptions(
features = "src/test/resources/features",
glue = "stepdefinitions",
plugin = {
"pretty", // Prints Gherkin steps in the console
"html:target/cucumber-reports/cucumber.html", // Generates HTML report
"json:target/cucumber-reports/cucumber.json" // Generates JSON report
},
monochrome = true // Makes console output more readable
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment