Skip to content

Commit

Permalink
NO-ISSUE: Try and fix Gecko v24.0.0 Error 404 (apache#2101)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagobento authored Dec 23, 2023
1 parent 8ce5484 commit 25b7dc5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/kie-sandbox-distribution/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"docker:start-no-pull": "docker compose up -d --wait --pull=never",
"docker:stop": "docker compose stop",
"install": "pnpm docker:create-env-file",
"test": "run-script-if --bool \"$(build-env containerImages.build)\" --bool \"$(build-env tests.run)\" --ignore-errors \"$(build-env tests.ignoreFailures)\" --then \"pnpm docker:start-no-pull\" \"sleep 20\" \"jest --silent --verbose\" \"pnpm docker:stop\""
"test": "run-script-if --bool \"$(build-env containerImages.build)\" --bool \"$(build-env tests.run)\" --ignore-errors \"$(build-env tests.ignoreFailures)\" --then \"pnpm docker:start-no-pull\" \"sleep 240\" \"jest --silent --verbose\" \"pnpm docker:stop\""
},
"dependencies": {
"@kie-tools/cors-proxy-image": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class DefinitionTests {

@BeforeClass
public static void setupClass() {
WebDriverManager.firefoxdriver().useMirror().setup();
WebDriverManager.firefoxdriver().setup();
}

@Before
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class SWEditorSeleniumBase {

@BeforeClass
public static void setupClass() {
WebDriverManager.chromedriver().useMirror().setup();
WebDriverManager.chromedriver().setup();
WebDriverManager.chromedriver().clearDriverCache().setup();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public class DMNDesignerBaseIT {

@BeforeClass
public static void setupClass() {
WebDriverManager.firefoxdriver().useMirror().setup();
WebDriverManager.firefoxdriver().setup();
}

@Before
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public class BPMNDesignerKogitoSeleniumIT {

@BeforeClass
public static void setupClass() {
WebDriverManager.firefoxdriver().useMirror().setup();
WebDriverManager.firefoxdriver().setup();
}

@Before
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class JsCanvasDriver extends JsCanvasExecutor {
private long loadTimeMillis = 1000;

public static void init() {
WebDriverManager.firefoxdriver().useMirror().setup();
WebDriverManager.firefoxdriver().setup();
}

public static JsCanvasDriver devMode() {
Expand Down

0 comments on commit 25b7dc5

Please sign in to comment.