test(animation): skip group css animation test (#26478)

This commit is contained in:
Liam DeBeasi
2022-12-13 16:59:04 -05:00
committed by GitHub
parent 16c0d4a611
commit b0fee77f94

View File

@ -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);
});