From b0fee77f9472c70cc50c5d07040d4a6b7fedf209 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Tue, 13 Dec 2022 16:59:04 -0500 Subject: [PATCH] test(animation): skip group css animation test (#26478) --- core/src/utils/animation/test/multiple/animation.e2e.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); });