Skip to content

Commit 4949303

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

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

__fixtures/config/jsConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
module.exports = {
33
gridUrl: 'local',
44
baseUrl: 'http://localhost',
5-
pageLoadTimeout: 0,
6-
httpTimeout: 60000,
5+
pageLoadTimeout: 20000,
6+
httpTimeout: 20000,
77
testTimeout: 90000,
88
resetCursor: false,
99
sets: {

__fixtures/config/withEverything.js

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

src/constants/defaultTestplaneConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ const defaultTestplaneConfig: TestplaneConfig = {
66
gridUrl: "local",
77
baseUrl: "http://localhost",
88

9-
pageLoadTimeout: 0,
10-
httpTimeout: 60000,
9+
pageLoadTimeout: 20000,
10+
httpTimeout: 20000,
1111
testTimeout: 90000,
1212
resetCursor: false,
1313

0 commit comments

Comments
 (0)