1
1
import { rte } from '../../../../helpers/constants' ;
2
2
import { DatabaseHelper } from '../../../../helpers/database' ;
3
3
import { BrowserPage , MyRedisDatabasePage , WorkbenchPage } from '../../../../pageObjects' ;
4
- import { commonUrl , ossStandaloneConfig } from '../../../../helpers/conf' ;
4
+ import { commonUrl , ossStandaloneV6Config } from '../../../../helpers/conf' ;
5
5
import { DatabaseAPIRequests } from '../../../../helpers/api/api-database' ;
6
6
import { Common } from '../../../../helpers/common' ;
7
7
import { APIKeyRequests } from '../../../../helpers/api/api-keys' ;
@@ -23,10 +23,10 @@ fixture `Key messages`
23
23
. meta ( { type : 'regression' , rte : rte . standalone } )
24
24
. page ( commonUrl )
25
25
. beforeEach ( async ( ) => {
26
- await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneConfig ) ;
26
+ await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneV6Config ) ;
27
27
} )
28
28
. afterEach ( async ( ) => {
29
- await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneConfig ) ;
29
+ await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneV6Config ) ;
30
30
} ) ;
31
31
test ( 'Verify that user can see updated message in Browser for TimeSeries and Graph data types' , async t => {
32
32
for ( let i = 0 ; i < dataTypes . length ; i ++ ) {
@@ -49,7 +49,7 @@ test('Verify that user can see updated message in Browser for TimeSeries and Gra
49
49
for ( const message of messages ) {
50
50
await t . expect ( browserPage . modulesTypeDetails . textContent ) . contains ( message , `The message for ${ dataTypes [ i ] } key is not displayed` ) ;
51
51
}
52
- await apiKeyRequests . deleteKeyByNameApi ( keyName , ossStandaloneConfig . databaseName ) ;
52
+ await apiKeyRequests . deleteKeyByNameApi ( keyName , ossStandaloneV6Config . databaseName ) ;
53
53
}
54
54
} ) ;
55
55
test ( 'Verify that user can see link to Workbench under word “Workbench” in the RedisTimeSeries and Graph key details' , async t => {
@@ -68,6 +68,6 @@ test('Verify that user can see link to Workbench under word “Workbench” in t
68
68
await t . click ( browserPage . internalLinkToWorkbench ) ;
69
69
await t . expect ( workbenchPage . queryInput . visible ) . ok ( `The message for ${ dataTypes [ i ] } key is not displayed` ) ;
70
70
await t . click ( myRedisDatabasePage . NavigationPanel . browserButton ) ;
71
- await apiKeyRequests . deleteKeyByNameApi ( keyName , ossStandaloneConfig . databaseName ) ;
71
+ await apiKeyRequests . deleteKeyByNameApi ( keyName , ossStandaloneV6Config . databaseName ) ;
72
72
}
73
73
} ) ;
0 commit comments