From 655d788c8e1224f76e50cba8598722da77c22abf Mon Sep 17 00:00:00 2001 From: Ori Livni Date: Thu, 5 Jan 2023 12:10:28 +0200 Subject: [PATCH] docs(ci): fix wrong CircleCI environment vars (#19887) --- docs/src/ci.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/src/ci.md b/docs/src/ci.md index ac196ef65a..22d994250b 100644 --- a/docs/src/ci.md +++ b/docs/src/ci.md @@ -370,8 +370,6 @@ Running Playwright on CircleCI is very similar to running on GitHub Actions. In pw-focal-development: docker: - image: mcr.microsoft.com/playwright:v1.30.0-focal - environment: - NODE_ENV: development # Needed if playwright is in `devDependencies` ``` Note: When using the docker agent definition, you are specifying the resource class of where playwright runs to the 'medium' tier [here](https://circleci.com/docs/configuration-reference?#docker-execution-environment). The default behavior of Playwright is to set the number of workers to the detected core count (2 in the case of the medium tier). Overriding the number of workers to greater than this number will cause unnecessary timeouts and failures.