From 287dc5f984f17ac45e01db261454a11fbaf5ac60 Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Mon, 9 Jun 2025 12:28:19 -0400 Subject: [PATCH] test(popover): skip flaky no event popover test --- 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 f05291ee2aa..92adfe7640b 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); });