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

2024-04-25

当我使用该选项时format in @CucumberOptions对于测试报告,它显示格式选项已被弃用,如何解决该问题。

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

replace format with plugin

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

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何解决 @CucumberOptions 中格式选项的弃用问题? 的相关文章

随机推荐