test(fab): skip flaky custom size test (#30463)

Co-authored-by: Brandy Smith <6577830+brandyscarney@users.noreply.github.com>
This commit is contained in:
Brandy Smith
2025-06-09 10:57:57 -04:00
committed by GitHub
parent 2df6d2ce6e
commit 907506b35c

View File

@ -6,7 +6,8 @@ import { configs, test, Viewports } from '@utils/test/playwright';
*/ */
configs({ modes: ['ios'] }).forEach(({ title, config, screenshot }) => { configs({ modes: ['ios'] }).forEach(({ title, config, screenshot }) => {
test.describe(title('fab: custom size'), () => { 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.goto(`/src/components/fab/test/custom-size`, config);
await page.setViewportSize(Viewports.tablet.landscape); await page.setViewportSize(Viewports.tablet.landscape);