Skip to content

Commit

Permalink
Update the test file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
anjula-sack committed Aug 6, 2023
1 parent ceaa277 commit b908658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/`,
Expand Down

0 comments on commit b908658

Please sign in to comment.