We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cffed84 commit 4c2873cCopy full SHA for 4c2873c
src/test/java/com/typicode/jsonplaceholder/TestRunner.java
@@ -0,0 +1,17 @@
1
+package com.typicode.jsonplaceholder;
2
+
3
+import io.cucumber.junit.Cucumber;
4
+import io.cucumber.junit.CucumberOptions;
5
+import org.junit.runner.RunWith;
6
7
+@RunWith(Cucumber.class)
8
+@CucumberOptions(
9
+ features = "src/test/java/com/typicode/jsonplaceholder/features",
10
+ glue = "com.typicode.jsonplaceholder.steps",
11
+ tags = "not @skip",
12
+ plugin = {"pretty", "html:target/cucumber-report.html"},
13
+ publish = true
14
+)
15
16
+public class TestRunner {
17
+}
0 commit comments