Skip to content

Commit 340633e

Browse files
fix: set page load timeout
1 parent 475a5e3 commit 340633e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

__fixtures/config/jsConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module.exports = {
33
gridUrl: 'local',
44
baseUrl: 'http://localhost',
5-
pageLoadTimeout: 0,
5+
pageLoadTimeout: 60000,
66
httpTimeout: 60000,
77
testTimeout: 90000,
88
resetCursor: false,

__fixtures/config/withEverything.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const isCi = Boolean(process.env.CI);
77
export default {
88
gridUrl: "local",
99
baseUrl: "http://localhost",
10-
pageLoadTimeout: 0,
10+
pageLoadTimeout: 60000,
1111
httpTimeout: 60000,
1212
testTimeout: 90000,
1313
resetCursor: false,

src/constants/defaultTestplaneConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const defaultTestplaneConfig: TestplaneConfig = {
66
gridUrl: "local",
77
baseUrl: "http://localhost",
88

9-
pageLoadTimeout: 0,
9+
pageLoadTimeout: 60000,
1010
httpTimeout: 60000,
1111
testTimeout: 90000,
1212
resetCursor: false,

0 commit comments

Comments
 (0)