From 2e69f741c0d735471873af08431f003b41b5f946 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Tue, 8 Apr 2025 11:29:47 -0400 Subject: [PATCH] Updates artifacts folder path Updates the path to the artifacts folder in the Playwright config. This ensures that test results are stored in the correct location within the project structure. --- playwright-tests/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright-tests/playwright.config.ts b/playwright-tests/playwright.config.ts index 3adfb38aa..658de5f12 100644 --- a/playwright-tests/playwright.config.ts +++ b/playwright-tests/playwright.config.ts @@ -27,7 +27,7 @@ if (!process.env.CI) { const reportConfig: OrtoniReportConfig = { port: 1994, open: "never", - folderPath: "artifacts/test-results", + folderPath: "playwright-tests/artifacts/test-results", filename: "index.html", logo: "../data/logo.png", title: "Test Report",