Skip to content

Commit 30769e3

Browse files
committed
return back
1 parent 5ad2dc9 commit 30769e3

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ jobs:
389389
description: Number of threads to run tests
390390
type: integer
391391
default: 1
392-
parallelism: 1
392+
parallelism: << parameters.parallelism >>
393393
steps:
394394
- checkout
395395
- when:
@@ -1086,7 +1086,7 @@ workflows:
10861086
- e2e-tests:
10871087
name: E2ETest
10881088
build: docker
1089-
parallelism: 1
1089+
parallelism: 4
10901090
requires:
10911091
- Build docker image
10921092

tests/e2e/tests/regression/workbench/import-tutorials.e2e.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const verifyCompletedResultText = async(resultsText: string[]): Promise<void> =>
2929
await t.click(workbenchPage.Toast.toastSubmitBtn);
3030
};
3131

32-
fixture.only `Upload custom tutorials`
32+
fixture `Upload custom tutorials`
3333
.meta({ type: 'regression', rte: rte.standalone })
3434
.page(commonUrl)
3535
.beforeEach(async t => {
@@ -180,7 +180,6 @@ test
180180
await t.expect(workbenchPage.scrolledEnablementArea.visible).ok('Enablement area is not visible after clicked');
181181

182182
// Verify that user can bulk upload data by relative path
183-
await t.expect(workbenchPage.uploadDataBulkBtn.withText('Upload relative').visible).ok('Upload button not visible');
184183
await t.click(workbenchPage.uploadDataBulkBtn.withText('Upload relative'));
185184
await t.click(workbenchPage.uploadDataBulkApplyBtn);
186185
// Verify that user can see the summary when the command execution is completed

tests/e2e/web.runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import testcafe from 'testcafe';
4141
selectorTimeout: 5000,
4242
assertionTimeout: 5000,
4343
speed: 1,
44-
quarantineMode: { successThreshold: '1', attemptLimit: '1' }
44+
quarantineMode: { successThreshold: '1', attemptLimit: '3' }
4545
});
4646
})
4747
.then((failedCount) => {

0 commit comments

Comments
 (0)