From b97900b925ba491d16ca0004373009e4838701ca Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Tue, 13 Dec 2022 16:03:53 -0800 Subject: [PATCH] tests: use run-server for mode=service tests, restrict to page tests only (#19435) --- tests/library/playwright.config.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/library/playwright.config.ts b/tests/library/playwright.config.ts index f777517a79..bb46802f5c 100644 --- a/tests/library/playwright.config.ts +++ b/tests/library/playwright.config.ts @@ -69,14 +69,23 @@ const config: Config b !== browserName).map(b => new RegExp(b)); for (const folder of ['library', 'page']) { + if (mode === 'service' && folder === 'library') + continue; config.projects.push({ name: browserName, testDir: path.join(testDir, folder),