如何解决@CucumberOptions格式选项的弃用问题?

2022-09-02 09:53:30

当我使用选项格式进行测试报告时,它显示格式选项已被弃用,如何解决这个问题。@CucumberOptions

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

答案 1

插件替换格式

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


答案 2

推荐