Skip to content

Commit d843932

Browse files
committed
fix
1 parent cf23739 commit d843932

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

.circleci/config.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,33 +1144,33 @@ workflows:
11441144
only:
11451145
- /^e2e/feature.*/
11461146
- /^e2e/bugfix.*/
1147-
# - setup-sign-certificates:
1148-
# name: Setup sign certificates (stage)
1149-
# requires:
1150-
# - Start E2E Tests
1151-
# - setup-build:
1152-
# name: Setup build (stage)
1153-
# requires:
1154-
# - Setup sign certificates (stage)
1155-
# - linux:
1156-
# name: Build app - Linux (stage)
1157-
# requires:
1158-
# - Setup build (stage)
1147+
- setup-sign-certificates:
1148+
name: Setup sign certificates (stage)
1149+
requires:
1150+
- Start E2E Tests
1151+
- setup-build:
1152+
name: Setup build (stage)
1153+
requires:
1154+
- Setup sign certificates (stage)
1155+
- linux:
1156+
name: Build app - Linux (stage)
1157+
requires:
1158+
- Setup build (stage)
11591159
- docker:
11601160
name: Build docker image
11611161
requires:
11621162
- Start E2E Tests
11631163
- e2e-tests:
11641164
name: E2ETest
11651165
build: docker
1166-
parallelism: 1
1166+
parallelism: 4
11671167
requires:
11681168
- Build docker image
1169-
# - e2e-app-image:
1170-
# name: E2ETest (AppImage)
1171-
# parallelism: 2
1172-
# requires:
1173-
# - Build app - Linux (stage)
1169+
- e2e-app-image:
1170+
name: E2ETest (AppImage)
1171+
parallelism: 2
1172+
requires:
1173+
- Build app - Linux (stage)
11741174
# Workflow for feature, bugfix, main branches
11751175
feature-main-branch:
11761176
<<: *ignore-for-manual-build

tests/e2e/tests/web/critical-path/url-handling/url-handling.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function generateLink(params: Record<string, any>): string {
2222

2323
const redisConnect = 'redisinsight://databases/connect';
2424

25-
fixture.only `Add DB from SM`
25+
fixture `Add DB from SM`
2626
.meta({ type: 'critical_path', rte: rte.none })
2727
.afterEach(async() => {
2828
// Delete all existing connections

tests/e2e/web.runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import testcafe from 'testcafe';
3838
selectorTimeout: 5000,
3939
assertionTimeout: 5000,
4040
speed: 1,
41-
// quarantineMode: { successThreshold: 1, attemptLimit: 1 },
41+
quarantineMode: { successThreshold: 1, attemptLimit: 3 },
4242
pageRequestTimeout: 8000
4343
});
4444
})

0 commit comments

Comments
 (0)