diff --git a/packages/web-components/fast-ssr/src/styles/fast-style.spec.ts b/packages/web-components/fast-ssr/src/styles/fast-style.spec.ts index 16d845c982d..01db31c6630 100644 --- a/packages/web-components/fast-ssr/src/styles/fast-style.spec.ts +++ b/packages/web-components/fast-ssr/src/styles/fast-style.spec.ts @@ -1,6 +1,7 @@ import { expect, test } from "@playwright/test"; test("Check that the first element has styles assigned", async ({ page }) => { + test.slow(); await page.goto("/fast-style"); const cards = page.locator("fast-card"); @@ -17,6 +18,7 @@ test("Check that the first element has styles assigned", async ({ page }) => { test("Check that the nested element in the first element has styles assigned", async ({ page, }) => { + test.slow(); await page.goto("/fast-style"); const cards = page.locator("fast-card"); @@ -53,6 +55,7 @@ test("Check that all elements have styles assigned", async ({ page }) => { }); }); test("Check that all nested elements have styles assigned", async ({ page }) => { + test.slow(); await page.goto("/fast-style"); const cards = page.locator("fast-card");