Skip to content

Commit

Permalink
visual proof and uncommented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
VladPiatachenko committed Oct 18, 2024
1 parent f3589c9 commit 411f12e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/test/java/com/fluffy/universe/e2e/CucumberTestRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

@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
features = "src/test/resources/features",
glue = "com.fluffy.universe.e2esteps",
plugin = {"pretty", "html:target/cucumber-reports.html"},
monochrome = true // Makes console output readable
)
public class CucumberTestRunner {
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/com/fluffy/universe/e2e/Profilee2eTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public class Profilee2eTest {
void BackgroundPrep(){
ChromeOptions options = new ChromeOptions();
options.addArguments("--remote-allow-origins=*");
options.addArguments("--headless");
options.addArguments("--no-sandbox");
options.addArguments("--disable-dev-shm-usage");
//options.addArguments("--headless");
//options.addArguments("--no-sandbox");
//options.addArguments("--disable-dev-shm-usage");
driver = new ChromeDriver(options);
driver.get(loginUrl);
driver.findElement(By.id("sign-in__email")).sendKeys(testEmail);
Expand Down
Binary file modified universe.db
Binary file not shown.

0 comments on commit 411f12e

Please sign in to comment.