From e9435ad0a928aa3d5bb302a0cd0425afcc60298d Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 23 Oct 2024 18:41:24 +0800 Subject: [PATCH] chore: updated config --- playwright.config.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index ea71833..0462261 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -16,13 +16,6 @@ const workers = process.env.WORKERS ? Number(process.env.WORKERS) : (process.env const retries = process.env.CI ? 2 : 0; const storageState = process.env.STORAGE_STATE || '.auth/state.json'; -console.info('Running tests with the following configuration:'); -console.info(`HEADLESS: ${headless}`); -console.info(`TIMEOUT: ${timeout}`); -console.info(`WORKERS: ${workers}`); -console.info(`RETRIES: ${retries}`); -console.info(`STORAGE_STATE: ${storageState}`); - /** * See https://playwright.dev/docs/test-configuration. */