Skip to content

Commit

Permalink
Not running in parallel just to test
Browse files Browse the repository at this point in the history
  • Loading branch information
keithwillcode committed May 24, 2024
1 parent 736eb94 commit aa6547c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type { Frame, PlaywrightTestConfig } from "@playwright/test";
import { devices, expect } from "@playwright/test";
import dotEnv from "dotenv";
import * as os from "os";
import * as path from "path";

import { WEBAPP_URL } from "@calcom/lib/constants";
Expand Down Expand Up @@ -80,10 +79,10 @@ const config: PlaywrightTestConfig = {
retries: process.env.CI ? 2 : 0,
// While debugging it should be focussed mode
// eslint-disable-next-line turbo/no-undeclared-env-vars
workers: process.env.PWDEBUG ? 1 : os.cpus().length,
workers: 1, //process.env.PWDEBUG ? 1 : os.cpus().length,
timeout: DEFAULT_TEST_TIMEOUT,
maxFailures: headless ? 10 : undefined,
fullyParallel: true,
fullyParallel: false,
reporter: [
[process.env.CI ? "github" : "list"],
["@deploysentinel/playwright"],
Expand Down

0 comments on commit aa6547c

Please sign in to comment.