chore(): sync with main

This commit is contained in:
Liam DeBeasi
2022-12-14 16:49:32 -05:00
369 changed files with 671 additions and 443 deletions

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