File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
tests/critical-path/database Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export class DatabasesActions {
9
9
* @param databases The list of databases to verify
10
10
*/
11
11
async verifyDatabasesDisplayed ( databases : string [ ] ) : Promise < void > {
12
- for ( const db in databases ) {
12
+ for ( const db of databases ) {
13
13
const databaseName = myRedisDatabasePage . dbNameList . withText ( db ) ;
14
14
await t . expect ( databaseName . exists ) . ok ( `"${ db } " database doesn't exist` ) ;
15
15
}
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ const dbData = [
31
31
dbNames : [ 'ardmNoName:12001' , 'ardmWithPassAndUsername' ]
32
32
}
33
33
] ;
34
+ // List of all created databases to delete
34
35
const databases = [
35
36
rdmData . dbNames [ 0 ] ,
36
37
rdmData . dbNames [ 1 ] ,
You can’t perform that action at this time.
0 commit comments