From 7ccb2e61c051c49ab64e09a707f1c8653ca1e2c5 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 10 Oct 2022 15:13:08 +0800 Subject: [PATCH] fix: the project name for Desktop Chrome is actually `chromium` in default config --- utils/generateReadme.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/generateReadme.ts b/utils/generateReadme.ts index bdbc0a5a..2e853bb5 100644 --- a/utils/generateReadme.ts +++ b/utils/generateReadme.ts @@ -105,8 +105,8 @@ npx playwright install # Runs the end-to-end tests. ${getCommand(packageManager, 'test:e2e')} -# Runs the tests only on Desktop Chrome. -${getCommand(packageManager, 'test:e2e -- --project="Desktop Chrome"')} +# Runs the tests only on Chromium. +${getCommand(packageManager, 'test:e2e -- --project=chromium')} # Runs the tests of a specific file. ${getCommand(packageManager, 'test:e2e -- tests/example.spec.ts')} # Runs the tests in debug mode. -- 2.39.5