From 47b346489335cb5f29a5c51786666124923ef658 Mon Sep 17 00:00:00 2001 From: Alano Terblanche <18033717+Benehiko@users.noreply.github.com> Date: Tue, 26 Sep 2023 16:36:55 +0200 Subject: [PATCH] chore: normalize browser css and increse playwright workers --- playwright-ct.config.ts | 2 +- playwright/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright-ct.config.ts b/playwright-ct.config.ts index b5ddfe5fb..5b69ef326 100644 --- a/playwright-ct.config.ts +++ b/playwright-ct.config.ts @@ -19,7 +19,7 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : undefined, + workers: process.env.CI ? 6 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: "html", /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ diff --git a/playwright/index.tsx b/playwright/index.tsx index fdc1b49c7..18ef323c4 100644 --- a/playwright/index.tsx +++ b/playwright/index.tsx @@ -2,7 +2,7 @@ // SPDX-License-Identifier: Apache-2.0 // Import styles, initialize component theme here. -// import '../src/common.css'; +import "../src/assets/normalize.css" import { IntlProvider } from "../src/react-components" import { beforeMount } from "@playwright/experimental-ct-react/hooks"