Skip to content

Commit b6c9cc5

Browse files
committed
updates
1 parent 030d848 commit b6c9cc5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

tests/e2e/helpers/conf.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ export const ossStandaloneConfig = {
1919
databasePassword: process.env.OSS_STANDALONE_PASSWORD
2020
};
2121

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',
2424
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}`,
2626
databaseUsername: process.env.OSS_STANDALONE_USERNAME,
2727
databasePassword: process.env.OSS_STANDALONE_PASSWORD
2828
};

tests/e2e/rte.docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ services:
3333
ports:
3434
- 8100:6379
3535

36-
oss-standalone-2:
36+
oss-standalone-empty:
3737
image: redislabs/redismod
3838
command: [
3939
"--loadmodule", "/usr/lib/redis/modules/redisearch.so",

tests/e2e/tests/regression/browser/onboarding.e2e.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
acceptTermsAddDatabaseOrConnectToRedisStack, deleteDatabase
44
} from '../../../helpers/database';
55
import {
6-
commonUrl, ossStandaloneConfig2
6+
commonUrl, ossStandaloneConfigEmpty
77
} from '../../../helpers/conf';
88
import { env, rte } from '../../../helpers/constants';
99
import {Common} from '../../../helpers/common';
@@ -34,13 +34,13 @@ fixture `Onboarding new user tests`
3434
.meta({type: 'regression', rte: rte.standalone })
3535
.page(commonUrl)
3636
.beforeEach(async() => {
37-
await acceptTermsAddDatabaseOrConnectToRedisStack(ossStandaloneConfig2, ossStandaloneConfig2.databaseName);
37+
await acceptTermsAddDatabaseOrConnectToRedisStack(ossStandaloneConfigEmpty, ossStandaloneConfigEmpty.databaseName);
3838
await setLocalStorageItem('onboardingStep', '0');
3939
await common.reloadPage();
4040
})
4141
.afterEach(async() => {
4242
await cliPage.sendCommandInCli(`DEL ${indexName}`);
43-
await deleteDatabase(ossStandaloneConfig2.databaseName);
43+
await deleteDatabase(ossStandaloneConfigEmpty.databaseName);
4444
});
4545
// https://redislabs.atlassian.net/browse/RI-4070, https://redislabs.atlassian.net/browse/RI-4067
4646
test

0 commit comments

Comments
 (0)