Created
September 23, 2024 15:16
-
-
Save medvedev1088/a181b2a9abae73c25562d2c86b6b1577 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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