Skip to content

Commit f982587

Browse files
authored
Merge pull request #2696 from RedisInsight/e2e/feature/RI-4481_replace_hide_symbol
e2e/RI-4481_replace_hide_symbol
2 parents 30231d6 + 5b22c28 commit f982587

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/e2e/tests/electron/critical-path/database/add-ssh-db.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fixture `Adding database with SSH`
4343
await databaseAPIRequests.deleteStandaloneDatabasesByNamesApi([sshDbPass.databaseName, sshDbPrivateKey.databaseName, sshDbPasscode.databaseName, newClonedDatabaseAlias]);
4444
});
4545
test('Adding database with SSH', async t => {
46-
const hiddenPass = '************';
46+
const hiddenPass = '••••••••••••';
4747
const sshWithPass = {
4848
...sshParams,
4949
sshPassword: 'pass'

tests/e2e/tests/web/critical-path/database/clone-databases.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ test
100100
await myRedisDatabasePage.reloadPage();
101101
})
102102
.meta({ rte: rte.sentinel })('Verify that user can clone Sentinel', async t => {
103-
const hiddenPassword = '************';
103+
const hiddenPassword = '••••••••••••';
104104

105105
await databaseHelper.clickOnEditDatabaseByName(ossSentinelConfig.masters[1].alias);
106106
await t.click(myRedisDatabasePage.AddRedisDatabase.cloneDatabaseButton);

tests/e2e/tests/web/critical-path/database/connecting-to-the-db.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ test
8989
// Delete databases
9090
await databaseAPIRequests.deleteStandaloneDatabasesByNamesApi([sshDbPass.databaseName, sshDbPrivateKey.databaseName, sshDbPasscode.databaseName, newClonedDatabaseAlias]);
9191
})('Adding database with SSH', async t => {
92-
const hiddenPass = '************';
92+
const hiddenPass = '••••••••••••';
9393
// const tooltipText = [
9494
// 'Enter a value for required fields (3):',
9595
// 'SSH Host',

tests/e2e/tests/web/critical-path/database/import-databases.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const dbData = [
7676
}
7777
];
7878
const findImportedRdmDbNameInList = async(dbName: string): Promise<string> => rdmData.dbImportedNames.find(item => item === dbName)!;
79-
const hiddenPassword = '************';
79+
const hiddenPassword = '••••••••••••';
8080

8181
fixture `Import databases`
8282
.meta({ type: 'critical_path', rte: rte.none })

0 commit comments

Comments
 (0)