How to resolve the deprecation of format option in

2019-04-05 03:54发布

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" })

标签: java cucumber
1条回答
不美不萌又怎样
2楼-- · 2019-04-05 04:04

replace format with plugin

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

查看更多
登录 后发表回答