Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const databaseAPIRequests = new DatabaseAPIRequests();
const headerColumns = {
'Type': 'OSS Cluster',
'Version': '7.0.0',
'User': 'Default'
'User': 'default'
};
type HeaderColumn = keyof typeof headerColumns;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ test
// Verify that 'redis://default@127.0.0.1:6379' default value prepopulated for connection URL field and the same for placeholder
await t.expect(addDbDialog.connectionUrlInput.textContent).eql(`redis://default@127.0.0.1:6379`, 'Connection URL not prepopulated');

await t.typeText(addDbDialog.connectionUrlInput, codedUrl);
await t.typeText(addDbDialog.connectionUrlInput, codedUrl, { replace: true, paste: true });
await t.click(addDbDialog.customSettingsButton);
await t.expect(addDbDialog.databaseAliasInput.getAttribute('value')).eql(`${host}:${port}`, 'name is incorrected');
await t.expect(addDbDialog.hostInput.getAttribute('value')).eql(`${host}`, 'host is incorrected');
Expand Down
Loading