File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
tests/e2e/tests/regression/database Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,13 @@ fixture `List of Databases`
26
26
. meta ( { type : 'regression' , rte : rte . standalone } )
27
27
. page ( commonUrl )
28
28
. beforeEach ( async ( ) => {
29
+ await databaseAPIRequests . deleteAllDatabasesApi ( ) ;
29
30
await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( database ) ;
30
31
} ) ;
31
32
test
32
33
. after ( async ( ) => {
33
34
// Delete database
34
- await databaseHelper . deleteDatabase ( newDatabaseName ) ;
35
+ await databaseAPIRequests . deleteAllDatabasesApi ( ) ;
35
36
} ) ( 'Verify that user can edit DB alias of Standalone DB' , async t => {
36
37
await t . click ( myRedisDatabasePage . NavigationPanel . myRedisDBButton ) ;
37
38
// Edit alias of added database
61
62
await t . click ( myRedisDatabasePage . AddRedisDatabase . addRedisDatabaseButton ) ;
62
63
await myRedisDatabasePage . clickOnDBByName ( ossStandaloneConfig . databaseName ) ;
63
64
await apiKeyRequests . deleteKeyByNameApi ( keyName , ossStandaloneConfig . databaseName ) ;
64
- await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneConfig ) ;
65
+ await databaseAPIRequests . deleteAllDatabasesApi ( ) ;
65
66
} ) ( 'Verify that context for previous database not saved after editing port/username/password/certificates/SSH' , async t => {
66
67
const command = 'HSET' ;
67
68
You can’t perform that action at this time.
0 commit comments