fix flaky user test (#21626)

(cherry picked from commit d4d1b3ed969a07bf1da532bb5b77014b679025b1)
This commit is contained in:
Shrushti Polekar 2025-06-06 20:02:06 +05:30 committed by OpenMetadata Release Bot
parent b60898daff
commit 2cd35486ec

View File

@ -591,6 +591,8 @@ export const checkStewardServicesPermissions = async (page: Page) => {
// Click on the entity link in the drawer title
await page.click('.summary-panel-container [data-testid="entity-link"]');
await page.waitForLoadState('networkidle');
// Check if the edit tier button is visible
await expect(page.locator('[data-testid="edit-tier"]')).toBeVisible();
};