File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ export const cloudDatabaseConfig = {
100
100
databaseName : `${ process . env . E2E_CLOUD_DATABASE_NAME || 'cloud-database' } -${ uniqueId } ` ,
101
101
databaseUsername : process . env . E2E_CLOUD_DATABASE_USERNAME ,
102
102
databasePassword : process . env . E2E_CLOUD_DATABASE_PASSWORD ,
103
- accessKey : process . env . E2E_CLOUD_API_ACCESS_KEY || '' ,
104
- secretKey : process . env . E2E_CLOUD_API_SECRET_KEY || ''
103
+ accessKey : process . env . E2E_CLOUD_API_ACCESS_KEY ,
104
+ secretKey : process . env . E2E_CLOUD_API_SECRET_KEY
105
105
} ;
106
106
107
107
export const ossStandaloneNoPermissionsConfig = {
Original file line number Diff line number Diff line change 52
52
// await deleteDatabase(databaseName);
53
53
} ) ( 'Verify that user can connect to the RE Cloud database via auto-discover flow' , async t => {
54
54
// Verify that user can see the Cloud auto-discovery option selected by default when switching to the auto-discovery of databases
55
- databaseName = await autodiscoverRECloudDatabase ( cloudDatabaseConfig . accessKey , cloudDatabaseConfig . secretKey ) ;
55
+ databaseName = await autodiscoverRECloudDatabase ( cloudDatabaseConfig . accessKey ! , cloudDatabaseConfig . secretKey ! ) ;
56
56
// uncomment when fixed db will be added to cloud subscription
57
57
// await myRedisDatabasePage.clickOnDBByName(databaseName);
58
58
// // Verify that user can add database from fixed subscription
You can’t perform that action at this time.
0 commit comments