Skip to content

Commit 94a9a07

Browse files
committed
drag test fixes 1
1 parent 55ee4b7 commit 94a9a07

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
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: 4
1166+
parallelism: 1
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/regression/browser/resize-columns.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fixture `Resize columns in Key details`
7272
await browserPage.deleteKeysByNames(keyNames);
7373
await databaseAPIRequests.deleteAllDatabasesApi();
7474
});
75-
test('Resize of columns in Hash, List, Zset Key details', async t => {
75+
test.only('Resize of columns in Hash, List, Zset Key details', async t => {
7676
const field = browserPage.keyDetailsTable.find(browserPage.cssRowInVirtualizedTable);
7777
const tableHeaderResizeTrigger = browserPage.resizeTrigger;
7878

@@ -81,7 +81,7 @@ test('Resize of columns in Hash, List, Zset Key details', async t => {
8181
// Remember initial column width
8282
key.fieldWidthStart = await field.clientWidth;
8383
await t.hover(tableHeaderResizeTrigger);
84-
await t.drag(tableHeaderResizeTrigger, -key.offsetX, 0, { speed: 0.2 });
84+
await t.drag(tableHeaderResizeTrigger, -key.offsetX, 0, { speed: 0.1 });
8585
// Remember last column width
8686
key.fieldWidthEnd = await field.clientWidth;
8787
// Verify that user can resize columns for Hash, List, Zset Keys

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: 3 },
41+
// quarantineMode: { successThreshold: 1, attemptLimit: 3 },
4242
pageRequestTimeout: 8000
4343
});
4444
})

0 commit comments

Comments
 (0)