I'm working on a project to run tests in parallel (scenarios) with cucumber and I'm using the jvm cucumber plugin and use it with serenity BDD, but it still does not work for me.
I would like to know this plugin (Cucumber-jvm-parallel- plugin) is compatible with Serenity BDD reports.
Good day.
I'm working on a project to run tests in parallel (scenarios) with cucumber and I'm using the jvm cucumber plugin and use it with serenity BDD, but it still does not work for me.
I would like to know this plugin (Cucumber-jvm-parallel- plugin) is compatible with Serenity BDD reports.
Greetings and thank you.
@wakaleo @temyers
This is the pom
`<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
`
and this is the runner
`mport net.serenitybdd.cucumber.CucumberWithSerenity;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
@RunWith(CucumberWithSerenity.class) @CucumberOptions( plugin = { "pretty", "html:target/cucumber", "json: target/cucumber.json"}, features={"src/test/resources/features/*"}, tags = {"@escenario"}, monochrome = true, glue = {"test"} )
public class PruebaParalelismoCucumber { }`