From 998706c440e34cd39c386214a3168d67f966e5e4 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Fri, 9 May 2025 15:49:22 -0400 Subject: [PATCH] Removes output directory configuration Removes the explicit `outputDir` configuration from the Playwright config. The default output directory is sufficient and allows for more flexibility in test execution and reporting. --- playwright-tests/playwright.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/playwright-tests/playwright.config.ts b/playwright-tests/playwright.config.ts index 10bde4030..7d2133cc4 100644 --- a/playwright-tests/playwright.config.ts +++ b/playwright-tests/playwright.config.ts @@ -66,7 +66,6 @@ export default defineConfig({ ], timeout: 180_000, /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ - outputDir: 'artifacts/test-results', use: { /* Base URL to use in actions like `await page.goto('/')`. */ // baseURL: 'http://127.0.0.1:3000',