Skip to content

Commit 1df7df5

Browse files
committed
return concurrency
1 parent 33fa4aa commit 1df7df5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/e2e/local.web.docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ services:
2929
command: [
3030
'./wait-for-it.sh', 'redis-enterprise:12000', '-s', '-t', '200',
3131
'--',
32-
'npx', 'yarn', 'test:chrome:ci', '--app-init-delay', '15000'
32+
'npx', 'yarn', 'test:chrome:ci'
3333
]
3434

3535
# Redisinsight API + UI build

tests/e2e/package.json

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

tests/e2e/web.runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import testcafe from 'testcafe';
3737
selectorTimeout: 5000,
3838
assertionTimeout: 5000,
3939
speed: 1,
40-
quarantineMode: { successThreshold: '1', attemptLimit: '1' }
40+
quarantineMode: { successThreshold: '1', attemptLimit: '3' }
4141
});
4242
})
4343
.then((failedCount) => {

0 commit comments

Comments
 (0)