From c25ec11f9230838120e8830c67cdcd7b4f929497 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Tue, 8 Apr 2025 15:43:50 -0400 Subject: [PATCH] Configures test result output directory Configures the test result output directory to 'artifacts/test-results'. This change centralizes test artifacts for easier access and management. --- playwright-tests/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playwright-tests/playwright.config.ts b/playwright-tests/playwright.config.ts index 658de5f12..a77283e51 100644 --- a/playwright-tests/playwright.config.ts +++ b/playwright-tests/playwright.config.ts @@ -56,6 +56,7 @@ 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', @@ -65,7 +66,7 @@ export default defineConfig({ headless: process.env.CI ? true : false, screenshot: "only-on-failure", actionTimeout: 60_000, - navigationTimeout: 60_000 + navigationTimeout: 60_000, }, /* Configure projects for major browsers */