I have 3 feature files each features contains of 3 tests so in total 9 tests but only 3 tests are executing and its picking up on;y 1st feature file.I have given global tag @smoke in all feature files
Please find the pom file below.
io.github.bonigarcia
webdrivermanager
4.0.0
org.seleniumhq.selenium
selenium-java
3.141.59
junit
junit
4.13
test
org.hamcrest
hamcrest-all
1.3
test
info.cukes
cucumber-java
1.2.5
info.cukes
cucumber-junit
1.2.5
info.cukes
cucumber-jvm-deps
1.0.5
provided
net.masterthought
cucumber-reporting
5.0.2
<dependency>
<groupId>info.cukes</groupId>
<artifactId>gherkin</artifactId>
<version>2.12.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<parallel>methods</parallel>
<useUnlimitedThreads>true</useUnlimitedThreads>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>