Skip to content

Commit 373c46e

Browse files
committed
test
1 parent c13381b commit 373c46e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

cypress.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export const LOCALHOST_IP = "127.0.0.1";
6262

6363
export default defineConfig({
6464
defaultCommandTimeout: 16000,
65+
taskTimeout: 600000,
6566
reporter: require.resolve("cypress-multi-reporters/index.js"),
6667
reporterOptions: {
6768
configFile: "reporter-config.json",

packages/testsuite/cypress/support/containers-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Cypress.Commands.add("startWildflyContainer", (options = { useNetworkHostMode: f
66
configuration: "standalone-insecure.xml",
77
useNetworkHostMode: options.useNetworkHostMode,
88
},
9-
{ timeout: 240_000 },
9+
{ timeout: 600_000 },
1010
);
1111
});
1212

@@ -18,7 +18,7 @@ Cypress.Commands.add("startWildflyContainerSecured", () => {
1818
configuration: "standalone.xml",
1919
useNetworkHostMode: true,
2020
},
21-
{ timeout: 240_000 },
21+
{ timeout: 600_000 },
2222
);
2323
});
2424

0 commit comments

Comments
 (0)