diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index e76f827d6312b..0f4bacf6e6013 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -93,7 +93,6 @@ jobs: needs: [build-demo] strategy: fail-fast: false - max-parallel: 9 matrix: shard: [ # Safari diff --git a/projects/demo-playwright/tests/deep/deep-select.pw.spec.ts b/projects/demo-playwright/tests/deep/deep-select.pw.spec.ts index 4b235d1e8fa93..51e3cb173f08a 100644 --- a/projects/demo-playwright/tests/deep/deep-select.pw.spec.ts +++ b/projects/demo-playwright/tests/deep/deep-select.pw.spec.ts @@ -37,7 +37,6 @@ test.describe('Deep / Select', () => { await expect(select).toBeVisible(); await select.click(); - await api.waitTuiIcons(); const options = await api.getOptions(); @@ -47,14 +46,12 @@ test.describe('Deep / Select', () => { await api.focusOnBody(); await api.hideNotifications(); await api.waitStableState(); - await api.waitTuiIcons(); await expect(api.apiPageExample).toHaveScreenshot( `deep-${path}-${name}-row—${rowIndex}-select-option-${index}.png`, ); await select.click(); - await api.waitTuiIcons(); } const cleaner = await api.getCleaner(select); @@ -69,7 +66,6 @@ test.describe('Deep / Select', () => { await api.waitStableState(); await api.focusOnBody(); - await api.waitTuiIcons(); } }), ); diff --git a/projects/demo-playwright/tests/deep/deep-toggle.pw.spec.ts b/projects/demo-playwright/tests/deep/deep-toggle.pw.spec.ts index a9b6dad02b179..4f3ff5bdb2571 100644 --- a/projects/demo-playwright/tests/deep/deep-toggle.pw.spec.ts +++ b/projects/demo-playwright/tests/deep/deep-toggle.pw.spec.ts @@ -31,7 +31,6 @@ test.describe('Deep / Toggle', () => { await expect(toggle).toBeVisible(); await toggle.click(); - await api.waitTuiIcons(); await api.hideNotifications(); await api.waitStableState(); await page.waitForTimeout(100); @@ -41,7 +40,6 @@ test.describe('Deep / Toggle', () => { ); await toggle.click(); - await api.waitTuiIcons(); } }), ); diff --git a/projects/demo-playwright/utils/is-flaky-examples.ts b/projects/demo-playwright/utils/is-flaky-examples.ts index b6c16669d5884..f739629967ce1 100644 --- a/projects/demo-playwright/utils/is-flaky-examples.ts +++ b/projects/demo-playwright/utils/is-flaky-examples.ts @@ -15,6 +15,7 @@ const FLAKY_EXAMPLES = new Map([ [DemoRoute.TabBar, [3]], // Imitating server response (timer(3000)) [DemoRoute.Table, [3, 4]], // Imitating server response (delay(3000)) and virtual scroll [DemoRoute.Tiles, [0]], // YouTube iframe player + [DemoRoute.AppBar, [0]], // Flaky in safari, need to investigate a problem ]); export function tuiIsFlakyExample(path: string, exampleIndex: number): boolean {