test(popover): skip flaky no event popover test (#30464)

Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com>
This commit is contained in:
Brandy Smith
2025-06-09 13:18:32 -04:00
committed by GitHub
parent 8bec166200
commit 7da26d0fd5

View File

@ -29,7 +29,8 @@ configs({ directions: ['ltr'] }).forEach(({ title, screenshot, config }) => {
await popoverFixture.open('#long-list-popover'); await popoverFixture.open('#long-list-popover');
await popoverFixture.screenshot('basic-long-list-popover', screenshot); await popoverFixture.screenshot('basic-long-list-popover', screenshot);
}); });
test('should render no event popover', async () => { // TODO(FW-6588): Remove skip once the flaky test is fixed
test.skip('should render no event popover', async () => {
await popoverFixture.open('#no-event-popover'); await popoverFixture.open('#no-event-popover');
await popoverFixture.screenshot('basic-no-event-popover', screenshot); await popoverFixture.screenshot('basic-no-event-popover', screenshot);
}); });