Skip to content

Commit

Permalink
fix: fixed filter persistence test errors (#4068)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpaten committed Aug 23, 2024
1 parent 31f9304 commit ffa69f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions explorer/e2e/testFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,9 @@ export async function testFilterPersistence(
await page
.getByRole("tab")
.getByText(tabOrder[0].tabName, { exact: true })
.click();
.dispatchEvent("click");
await expect(getFirstRowNthColumnCellLocator(page, 0)).toBeVisible();
await page.getByText(filterRegex(testFilterName)).click();
await page.getByText(filterRegex(testFilterName)).dispatchEvent("click");
const previouslySelected = getFirstFilterButtonLocator(page);
await expect(previouslySelected).toContainText(filterName, {
useInnerText: true,
Expand Down

0 comments on commit ffa69f5

Please sign in to comment.