使用空手道框架生成单个 cucumber.json

Generating single cucumber.json using Karate Framework

我在我的空手道测试中使用并行执行。我试图在 target 文件夹中生成一个 cucumber.json 文件。 使用当前设置,我在 surefire-reports 文件夹中有不同的 json 和 xml 文件。有没有一种方法可以生成一个包含特征结果的 json 文件?

@CucumberOptions( format={"json:target/cucumber.json"})
public class TestParallel {

    @Test
    public void testParallel() {
        String karateOutputPath = "target/surefire-reports";
        KarateStats stats = CucumberRunner.parallel(getClass(), 5, karateOutputPath);
        generateReport(karateOutputPath);
        assertTrue("there are scenario failures", stats.getFailCount() == 0);
    }

任何帮助或指点将不胜感激。提前致谢!

没有。但你永远不需要。 All reporting solutions 能够处理多个 JSON 个文件。

您想要一个 JSON 有什么具体原因吗?