Skip to content

Commit

Permalink
attempt to trigger tests
Browse files Browse the repository at this point in the history
  • Loading branch information
VladPiatachenko committed Oct 18, 2024
1 parent 70eff7e commit 532aae8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
- name: Install dependencies without tests
run: mvn install -DskipTests

# Step 4: Clean and Package the JAR
- name: Clean and Package the JAR
run: mvn clean package
# Step 4: Package the JAR
- name: Package the JAR
run: mvn clean package -DskipTests

# Step 5: Verify JAR file exists
- name: Verify JAR file
Expand Down
15 changes: 15 additions & 0 deletions src/test/java/com/fluffy/universe/e2e/CucumberTestRunner.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.fluffy.universe.e2e;

import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@CucumberOptions(
features = "src/test/resources/features", // Path to your feature files
glue = "com.fluffy.universe.steps", // Path to your step definitions
plugin = {"pretty", "html:target/cucumber-reports.html"}, // Plugins for reporting
monochrome = true // Makes console output readable
)
public class CucumberTestRunner {
}

0 comments on commit 532aae8

Please sign in to comment.