21

When i am using the option format in @CucumberOptions for test reports it is showing that the format option has been deprecated how to resolve that.

@CucumberOptions( monochrome = true, format = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })
Unheilig
  • 16,196
  • 193
  • 68
  • 98
Akshay jain
  • 555
  • 1
  • 7
  • 22

1 Answers1

30

replace format with plugin

@CucumberOptions( monochrome = true,plugin = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })

Paizo
  • 3,986
  • 30
  • 45