Skip to content

Commit 7590137

Browse files
committed
fixes for e2e
1 parent c096140 commit 7590137

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/e2e/tests/web/critical-path/cluster-details/cluster-details.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const databaseAPIRequests = new DatabaseAPIRequests();
1515
const headerColumns = {
1616
'Type': 'OSS Cluster',
1717
'Version': '7.0.0',
18-
'User': 'Default'
18+
'User': 'default'
1919
};
2020
type HeaderColumn = keyof typeof headerColumns;
2121

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
@@ -242,7 +242,7 @@ test
242242
// Verify that 'redis://[email protected]:6379' default value prepopulated for connection URL field and the same for placeholder
243243
await t.expect(addDbDialog.connectionUrlInput.textContent).eql(`redis://[email protected]:6379`, 'Connection URL not prepopulated');
244244

245-
await t.typeText(addDbDialog.connectionUrlInput, codedUrl);
245+
await t.typeText(addDbDialog.connectionUrlInput, codedUrl, { replace: true, paste: true });
246246
await t.click(addDbDialog.customSettingsButton);
247247
await t.expect(addDbDialog.databaseAliasInput.getAttribute('value')).eql(`${host}:${port}`, 'name is incorrected');
248248
await t.expect(addDbDialog.hostInput.getAttribute('value')).eql(`${host}`, 'host is incorrected');

0 commit comments

Comments
 (0)