diff --git a/core/src/utils/animation/test/multiple/animation.e2e.ts b/core/src/utils/animation/test/multiple/animation.e2e.ts index 957d0ebc07..a2772e04ee 100644 --- a/core/src/utils/animation/test/multiple/animation.e2e.ts +++ b/core/src/utils/animation/test/multiple/animation.e2e.ts @@ -13,7 +13,10 @@ test.describe('animation: multiple', async () => { await testMultiple(page); }); - test(`should resolve grouped animations using css animations`, async ({ page }) => { + /** + * CSS animations will occasionally resolve out of order, so we skip for now + */ + test.skip(`should resolve grouped animations using css animations`, async ({ page }) => { await page.goto('/src/utils/animation/test/multiple?ionic:_forceCSSAnimations=true'); await testMultiple(page); });