From f7305a582ba1407a070f1751ac5230dfcca28fa2 Mon Sep 17 00:00:00 2001 From: anjula-sack Date: Sun, 6 Aug 2023 15:15:37 +0530 Subject: [PATCH] Update the test file paths --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 8aa4918a..12530949 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -10,12 +10,12 @@ const config: PlaywrightTestConfig = { timeout: 20 * 1000, }, fullyParallel: false, - outputDir: "test-results/results", + outputDir: "../test-results/results", forbidOnly: !!process.env.CI, retries: 0, reporter: process.env.CI ? [["junit", { outputFile: "results.xml" }], ["html"]] - : [["html", { outputFolder: "test-results/report" }]], + : [["html", { outputFolder: "../test-results/report" }]], globalSetup: require.resolve("./e2e/core/global-setup"), use: { baseURL: `${process.env.E2E_BASE_URL}/spa/`,