File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ export const ossStandaloneConfig = {
19
19
databasePassword : process . env . OSS_STANDALONE_PASSWORD
20
20
} ;
21
21
22
- export const ossStandaloneConfig2 = {
23
- host : process . env . OSS_STANDALONE_HOST || 'oss-standalone-2 ' ,
22
+ export const ossStandaloneConfigEmpty = {
23
+ host : process . env . OSS_STANDALONE_HOST || 'oss-standalone-empty ' ,
24
24
port : process . env . OSS_STANDALONE_PORT || '6379' ,
25
- databaseName : `${ process . env . OSS_STANDALONE_DATABASE_NAME || 'test_standalone ' } -${ uniqueId } ` ,
25
+ databaseName : `${ process . env . OSS_STANDALONE_DATABASE_NAME || 'test_standalone_empty ' } -${ uniqueId } ` ,
26
26
databaseUsername : process . env . OSS_STANDALONE_USERNAME ,
27
27
databasePassword : process . env . OSS_STANDALONE_PASSWORD
28
28
} ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ services:
33
33
ports :
34
34
- 8100:6379
35
35
36
- oss-standalone-2 :
36
+ oss-standalone-empty :
37
37
image : redislabs/redismod
38
38
command : [
39
39
" --loadmodule" , "/usr/lib/redis/modules/redisearch.so",
Original file line number Diff line number Diff line change 3
3
acceptTermsAddDatabaseOrConnectToRedisStack , deleteDatabase
4
4
} from '../../../helpers/database' ;
5
5
import {
6
- commonUrl , ossStandaloneConfig2
6
+ commonUrl , ossStandaloneConfigEmpty
7
7
} from '../../../helpers/conf' ;
8
8
import { env , rte } from '../../../helpers/constants' ;
9
9
import { Common } from '../../../helpers/common' ;
@@ -34,13 +34,13 @@ fixture `Onboarding new user tests`
34
34
. meta ( { type : 'regression' , rte : rte . standalone } )
35
35
. page ( commonUrl )
36
36
. beforeEach ( async ( ) => {
37
- await acceptTermsAddDatabaseOrConnectToRedisStack ( ossStandaloneConfig2 , ossStandaloneConfig2 . databaseName ) ;
37
+ await acceptTermsAddDatabaseOrConnectToRedisStack ( ossStandaloneConfigEmpty , ossStandaloneConfigEmpty . databaseName ) ;
38
38
await setLocalStorageItem ( 'onboardingStep' , '0' ) ;
39
39
await common . reloadPage ( ) ;
40
40
} )
41
41
. afterEach ( async ( ) => {
42
42
await cliPage . sendCommandInCli ( `DEL ${ indexName } ` ) ;
43
- await deleteDatabase ( ossStandaloneConfig2 . databaseName ) ;
43
+ await deleteDatabase ( ossStandaloneConfigEmpty . databaseName ) ;
44
44
} ) ;
45
45
// https://redislabs.atlassian.net/browse/RI-4070, https://redislabs.atlassian.net/browse/RI-4067
46
46
test
You can’t perform that action at this time.
0 commit comments