Skip to content

Commit 33fa4aa

Browse files
committed
concurrency to 1
1 parent 8ac2613 commit 33fa4aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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",
16+
"test:chrome:ci": "ts-node ./web.runner.ts --cache --concurrency 1",
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: '3' }
40+
quarantineMode: { successThreshold: '1', attemptLimit: '1' }
4141
});
4242
})
4343
.then((failedCount) => {

0 commit comments

Comments
 (0)