Skip to content

Commit 111d225

Browse files
committed
fix for appimage
1 parent e54722c commit 111d225

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
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/tests/web/critical-path/database/import-databases.e2e.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import * as path from 'path';
22
import { rte } from '../../../../helpers/constants';
3-
import { BrowserPage, MyRedisDatabasePage } from '../../../../pageObjects';
3+
import { MyRedisDatabasePage } from '../../../../pageObjects';
44
import { commonUrl, ossStandaloneConfig } from '../../../../helpers/conf';
55
import { DatabaseHelper } from '../../../../helpers/database';
66
import { DatabaseAPIRequests } from '../../../../helpers/api/api-database';
77
import { DatabasesActions } from '../../../../common-actions/databases-actions';
88
import { Common } from '../../../../helpers/common';
99

10-
const browserPage = new BrowserPage();
1110
const myRedisDatabasePage = new MyRedisDatabasePage();
1211
const databasesActions = new DatabasesActions();
1312
const databaseHelper = new DatabaseHelper();

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)