From 7da26d0fd5881faf2e533f4f464e12cf24d2d1c1 Mon Sep 17 00:00:00 2001 From: Brandy Smith Date: Mon, 9 Jun 2025 13:18:32 -0400 Subject: [PATCH] test(popover): skip flaky no event popover test (#30464) Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> --- core/src/components/popover/test/basic/popover.e2e.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/components/popover/test/basic/popover.e2e.ts b/core/src/components/popover/test/basic/popover.e2e.ts index f05291ee2a..92adfe7640 100644 --- a/core/src/components/popover/test/basic/popover.e2e.ts +++ b/core/src/components/popover/test/basic/popover.e2e.ts @@ -29,7 +29,8 @@ configs({ directions: ['ltr'] }).forEach(({ title, screenshot, config }) => { await popoverFixture.open('#long-list-popover'); 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.screenshot('basic-no-event-popover', screenshot); });