From 4b803603c3098528571498308a04d69973db7edd Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 13 Nov 2024 12:06:34 +0100 Subject: [PATCH] Update docs/src/best-practices-js.md Co-authored-by: Dmitry Gozman Signed-off-by: Max Schmitt --- docs/src/best-practices-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/best-practices-js.md b/docs/src/best-practices-js.md index 47dfca49f1..f8b3b9188a 100644 --- a/docs/src/best-practices-js.md +++ b/docs/src/best-practices-js.md @@ -476,7 +476,7 @@ Setup CI/CD and run your tests frequently. The more often you run your tests the Use Linux when running your tests on CI as it is cheaper. Developers can use whatever environment when running locally but use linux on CI. Consider setting up [Sharding](./test-sharding.md) to make CI faster. -### Optimize browser downloads on CI +#### Optimize browser downloads on CI Only install the browsers that you actually need, especially on CI. For example, if you're only testing with Chromium, install just Chromium which might save you up to 50s.