Skip to content

Commit

Permalink
Update playwright.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
zomars committed Feb 28, 2023
1 parent dcd39c3 commit a6cd173
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { devices, PlaywrightTestConfig } from "@playwright/test";
import type { PlaywrightTestConfig } from "@playwright/test";
import { devices } from "@playwright/test";
import dotEnv from "dotenv";
import * as os from "os";
import * as path from "path";
Expand Down Expand Up @@ -33,7 +34,7 @@ if (IS_EMBED_TEST) {

const config: PlaywrightTestConfig = {
forbidOnly: !!process.env.CI,
retries: 1,
retries: 0,
workers: os.cpus().length,
timeout: 60_000,
maxFailures: headless ? 10 : undefined,
Expand Down

0 comments on commit a6cd173

Please sign in to comment.