Skip to content
Draft
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 @@ -37,7 +37,7 @@ async function navigateToCollection(
await browser.clickVisible(Selectors.SidebarFilterInput);
await browser.setValueVisible(
Selectors.SidebarFilterInput,
`^(${dbName}|${collectionName})$`
`${dbName}.${collectionName}`
);
const collectionElement = browser.$(collectionSelector);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function selectCollectionMenuItem(
await browser.clickVisible(Selectors.SidebarFilterInput);
await browser.setValueVisible(
Selectors.SidebarFilterInput,
`^(${databaseName}|${collectionName})$`
`${databaseName}.${collectionName}`
);

const collectionSelector = Selectors.sidebarCollection(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ describe('Collection Rename Modal', () => {
await browser.clickVisible(Selectors.SidebarFilterInput);
await browser.setValueVisible(
Selectors.SidebarFilterInput,
`^(${databaseName}|${newCollectionName})$`
`${databaseName}.${newCollectionName}`
);
await browser
.$(
Expand Down
Loading