Skip to content

Commit

Permalink
chore: normalize browser css and increse playwright workers
Browse files Browse the repository at this point in the history
  • Loading branch information
Benehiko committed Sep 26, 2023
1 parent be37856 commit 47b3464
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion playwright-ct.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion playwright/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 47b3464

Please sign in to comment.