Skip to content

Commit

Permalink
test(e2e): fix flaky searchIndexApplication.spec.ts (#19318)
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-madlani authored Jan 11, 2025
1 parent 89dae42 commit 9f19b42
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,12 @@ test('Search Index Application', async ({ page }) => {

await page.getByTestId('tree-select-widget').click();

// Bring table option to view in dropdown via searching for it
await page
.getByTestId('tree-select-widget')
.getByRole('combobox')
.fill('Table');

// uncheck the entity
await page.getByRole('tree').getByTitle('Table').click();

Expand Down

0 comments on commit 9f19b42

Please sign in to comment.