From 907506b35c99fb81c9b68f22e03d4b10bcaf917c Mon Sep 17 00:00:00 2001 From: Brandy Smith Date: Mon, 9 Jun 2025 10:57:57 -0400 Subject: [PATCH] test(fab): skip flaky custom size test (#30463) Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> --- core/src/components/fab/test/custom-size/fab.e2e.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/components/fab/test/custom-size/fab.e2e.ts b/core/src/components/fab/test/custom-size/fab.e2e.ts index 1a73994463..0e164a8573 100644 --- a/core/src/components/fab/test/custom-size/fab.e2e.ts +++ b/core/src/components/fab/test/custom-size/fab.e2e.ts @@ -6,7 +6,8 @@ import { configs, test, Viewports } from '@utils/test/playwright'; */ configs({ modes: ['ios'] }).forEach(({ title, config, screenshot }) => { test.describe(title('fab: custom size'), () => { - test('should position fabs correctly with custom sizes', async ({ page }) => { + // TODO(FW-6587): Remove skip once the flaky test is fixed + test.skip('should position fabs correctly with custom sizes', async ({ page }) => { await page.goto(`/src/components/fab/test/custom-size`, config); await page.setViewportSize(Viewports.tablet.landscape);