File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
tests/regression/workbench Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ jobs:
389
389
description : Number of threads to run tests
390
390
type : integer
391
391
default : 1
392
- parallelism : 1
392
+ parallelism : << parameters.parallelism >>
393
393
steps :
394
394
- checkout
395
395
- when :
@@ -1086,7 +1086,7 @@ workflows:
1086
1086
- e2e-tests :
1087
1087
name : E2ETest
1088
1088
build : docker
1089
- parallelism : 1
1089
+ parallelism : 4
1090
1090
requires :
1091
1091
- Build docker image
1092
1092
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const verifyCompletedResultText = async(resultsText: string[]): Promise<void> =>
29
29
await t . click ( workbenchPage . Toast . toastSubmitBtn ) ;
30
30
} ;
31
31
32
- fixture . only `Upload custom tutorials`
32
+ fixture `Upload custom tutorials`
33
33
. meta ( { type : 'regression' , rte : rte . standalone } )
34
34
. page ( commonUrl )
35
35
. beforeEach ( async t => {
180
180
await t . expect ( workbenchPage . scrolledEnablementArea . visible ) . ok ( 'Enablement area is not visible after clicked' ) ;
181
181
182
182
// 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' ) ;
184
183
await t . click ( workbenchPage . uploadDataBulkBtn . withText ( 'Upload relative' ) ) ;
185
184
await t . click ( workbenchPage . uploadDataBulkApplyBtn ) ;
186
185
// Verify that user can see the summary when the command execution is completed
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ import testcafe from 'testcafe';
41
41
selectorTimeout : 5000 ,
42
42
assertionTimeout : 5000 ,
43
43
speed : 1 ,
44
- quarantineMode : { successThreshold : '1' , attemptLimit : '1 ' }
44
+ quarantineMode : { successThreshold : '1' , attemptLimit : '3 ' }
45
45
} ) ;
46
46
} )
47
47
. then ( ( failedCount ) => {
You can’t perform that action at this time.
0 commit comments