File tree Expand file tree Collapse file tree 3 files changed +2
-1
lines changed Expand file tree Collapse file tree 3 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,6 @@ export async function acceptLicenseTermsAndAddRECloudDatabase(databaseParameters
195
195
export async function acceptLicenseTerms ( ) : Promise < void > {
196
196
await t . maximizeWindow ( ) ;
197
197
await userAgreementPage . acceptLicenseTerms ( ) ;
198
- await t . expect ( userAgreementPage . userAgreementsPopup . visible ) . notOk ( 'The user agreements popup is not shown' , { timeout : 2000 } ) ;
199
198
}
200
199
201
200
//Accept License terms and connect to the RedisStack database
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export class UserAgreementPage {
22
22
await t . click ( this . recommendedSwitcher ) ;
23
23
await t . click ( this . switchOptionEula ) ;
24
24
await t . click ( this . submitButton ) ;
25
+ await t . expect ( this . userAgreementsPopup . visible ) . notOk ( 'The user agreements popup is not shown' , { timeout : 2000 } ) ;
25
26
}
26
27
}
27
28
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ import testcafe from 'testcafe';
30
30
output : './report/report.html'
31
31
}
32
32
] )
33
+ . concurrency ( 2 )
33
34
. run ( {
34
35
skipJsErrors : true ,
35
36
browserInitTimeout : 60000 ,
You can’t perform that action at this time.
0 commit comments