From cc4921028d09221312998db8ca16b9773dc5ece9 Mon Sep 17 00:00:00 2001 From: splincode Date: Thu, 12 Dec 2024 17:58:49 +0300 Subject: [PATCH] chore: slow operations on deep tests --- projects/demo-playwright/tests/deep/deep-select.pw.spec.ts | 4 ---- projects/demo-playwright/tests/deep/deep-toggle.pw.spec.ts | 2 -- 2 files changed, 6 deletions(-) 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 4b235d1e8fa9..51e3cb173f08 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 a9b6dad02b17..4f3ff5bdb257 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(); } }), );