Skip to content

Commit 9d9d8db

Browse files
authored
Merge pull request #4099 from RedisInsight/e2e/bugfix/fix-app-image-tests
e2e/bugfix/fix-app-image-tests
2 parents a393816 + 0c96fdd commit 9d9d8db

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

tests/e2e/desktop.runner.ci.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ import testcafe from 'testcafe';
4040
speed: 1,
4141
quarantineMode: { successThreshold: 1, attemptLimit: 3 },
4242
pageRequestTimeout: 20000,
43-
disableMultipleWindows: true,
44-
runExecutionTimeout: 280000,
45-
testExecutionTimeout: 280000
43+
disableMultipleWindows: true
4644
});
4745
})
4846
.then((failedCount) => {

tests/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:ui": "yarn --cwd ../../ build:ui",
1414
"redis:last": "docker run --name redis-last-version -p 7777:6379 -d redislabs/redismod",
1515
"start:app": "cross-env yarn start:api",
16-
"test:chrome": "testcafe --compiler-options typescript.configPath=tsconfig.testcafe.json --cache --disable-multiple-windows --concurrency 1 chrome tests/ -r html:./report/index.html,spec -e -s takeOnFails=true,path=report/screenshots/,pathPattern=${OS}_${BROWSER}/${DATE}_${TIME}/${FIXTURE}_${TEST}_${FILE_INDEX}.png",
16+
"test:chrome": "ts-node ./web.runner.ts",
1717
"test:chrome:ci": "ts-node ./web.runner.ci.ts",
1818
"test": "yarn test:chrome",
1919
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",

tests/e2e/web.runner.ci.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import testcafe from 'testcafe';
3434
])
3535
.run({
3636
skipJsErrors: true,
37-
browserInitTimeout: 60000,
37+
browserInitTimeout: 120000,
3838
selectorTimeout: 5000,
3939
assertionTimeout: 5000,
4040
speed: 1,

0 commit comments

Comments
 (0)