Skip to content

Commit ea3e759

Browse files
committed
return parallelizm
1 parent e3625ba commit ea3e759

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.circleci/config.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,7 @@ jobs:
308308
description: Number of threads to run tests
309309
type: integer
310310
default: 1
311-
# parallelism: << parameters.parallelism >>
312-
parallelism: 1
311+
parallelism: << parameters.parallelism >>
313312
steps:
314313
- checkout
315314
- attach_workspace:
@@ -347,8 +346,7 @@ jobs:
347346
description: Number of threads to run tests
348347
type: integer
349348
default: 1
350-
# parallelism: << parameters.parallelism >>
351-
parallelism: 1
349+
parallelism: << parameters.parallelism >>
352350
steps:
353351
- checkout
354352
- attach_workspace:
@@ -391,8 +389,7 @@ jobs:
391389
description: Number of threads to run tests
392390
type: integer
393391
default: 1
394-
# parallelism: << parameters.parallelism >>
395-
parallelism: 1
392+
parallelism: << parameters.parallelism >>
396393
steps:
397394
- checkout
398395
- when:
@@ -1088,7 +1085,7 @@ workflows:
10881085
- e2e-tests:
10891086
name: E2ETest
10901087
build: docker
1091-
parallelism: 1
1088+
parallelism: 4
10921089
requires:
10931090
- Build docker image
10941091

@@ -1250,7 +1247,7 @@ workflows:
12501247
# e2e web tests on docker image build
12511248
- e2e-tests:
12521249
name: E2ETest - Nightly
1253-
parallelism: 1
1250+
parallelism: 4
12541251
build: docker
12551252
report: true
12561253
requires:

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 -q attemptLimit=1,successThreshold=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/tests/critical-path/database/modules.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fixture `Database modules`
2626
// Delete database
2727
await deleteStandaloneDatabaseApi(ossStandaloneRedisearch);
2828
});
29-
test.only
29+
test
3030
.meta({ rte: rte.standalone, env: env.web })('Verify that user can see DB modules on DB list page for Standalone DB', async t => {
3131
// Check module column on DB list page
3232
await t.expect(myRedisDatabasePage.moduleColumn.exists).ok('Module column not found');

0 commit comments

Comments
 (0)