Skip to content

Commit 619d103

Browse files
committed
check failed tests on ci
1 parent 6752c81 commit 619d103

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ workflows:
11631163
- e2e-tests:
11641164
name: E2ETest
11651165
build: docker
1166-
parallelism: 4
1166+
parallelism: 1
11671167
requires:
11681168
- Build docker image
11691169
- e2e-app-image:

tests/e2e/tests/web/critical-path/browser/bulk-upload.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ fixture `Bulk Upload`
3636
await deleteAllKeysFromDB(dbParameters.host, dbParameters.port);
3737
await databaseAPIRequests.deleteStandaloneDatabaseApi(ossStandaloneRedisearch);
3838
});
39-
test('Verify bulk upload of different text docs formats', async t => {
39+
test.only('Verify bulk upload of different text docs formats', async t => {
4040
// Verify bulk upload for docker app version
4141
const allKeysResults = ['9Commands Processed', '9Success', '0Errors'];
4242
const bigKeysResults = ['10 000Commands Processed', '10 000Success', '0Errors'];

tests/e2e/tests/web/critical-path/browser/consumer-group.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fixture `Consumer group`
3838
await apiKeyRequests.deleteKeyByNameApi(keyName, ossStandaloneConfig.databaseName);
3939
await databaseAPIRequests.deleteStandaloneDatabaseApi(ossStandaloneConfig);
4040
});
41-
test('Verify that user can create a new Consumer Group in the current Stream', async t => {
41+
test.only('Verify that user can create a new Consumer Group in the current Stream', async t => {
4242
const toolTip = [
4343
'Enter Valid ID, 0 or $',
4444
'\nSpecify the ID of the last delivered entry in the stream from the new group\'s perspective.',

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
disableMultipleWindows: true
4444
});

0 commit comments

Comments
 (0)