@@ -38,16 +38,17 @@ const sshDbClusterPass = {
38
38
} ;
39
39
40
40
fixture `Adding database with SSH`
41
- . meta ( { type : 'critical_path' , rte : rte . standalone } )
41
+ . meta ( { type : 'critical_path' } )
42
42
. page ( commonUrl )
43
43
. beforeEach ( async ( ) => {
44
44
await databaseHelper . acceptLicenseTerms ( ) ;
45
45
} )
46
46
. after ( async ( ) => {
47
47
// Delete databases
48
- await databaseAPIRequests . deleteStandaloneDatabasesByNamesApi ( [ sshDbPass . databaseName , sshDbPrivateKey . databaseName , sshDbPasscode . databaseName , newClonedDatabaseAlias ] ) ;
48
+ await databaseAPIRequests . deleteStandaloneDatabasesByNamesApi ( [ sshDbPass . databaseName , sshDbPrivateKey . databaseName , sshDbPasscode . databaseName , newClonedDatabaseAlias , sshDbClusterPass . databaseName ] ) ;
49
49
} ) ;
50
- test ( 'Adding database with SSH' , async t => {
50
+ test
51
+ . meta ( { rte : rte . standalone } ) ( 'Adding database with SSH' , async t => {
51
52
const tooltipText = [
52
53
'Enter a value for required fields (3):' ,
53
54
'SSH Host' ,
@@ -122,14 +123,15 @@ test('Adding database with SSH', async t => {
122
123
await myRedisDatabasePage . clickOnDBByName ( sshDbPasscode . databaseName ) ;
123
124
await Common . checkURLContainsText ( 'browser' ) ;
124
125
} ) ;
125
- test ( 'Verify that OSS Cluster database with SSH can be added and work correctly' , async t => {
126
+ test
127
+ . meta ( { rte : rte . ossCluster } ) ( 'Verify that OSS Cluster database with SSH can be added and work correctly' , async t => {
126
128
const sshWithPass = {
127
129
...sshParams ,
128
130
sshPassword : 'pass'
129
131
} ;
130
132
// Verify that user can add SSH tunnel with Password for OSS Cluster database
131
133
await myRedisDatabasePage . AddRedisDatabaseDialog . addStandaloneSSHDatabase ( sshDbClusterPass , sshWithPass ) ;
132
- await myRedisDatabasePage . clickOnDBByName ( sshDbPass . databaseName ) ;
134
+ await myRedisDatabasePage . clickOnDBByName ( sshDbClusterPass . databaseName ) ;
133
135
134
136
//verify that db is added and profiler works
135
137
await t . click ( browserPage . Profiler . expandMonitor ) ;
0 commit comments