From 21ce013df2e4a8c91ebbf08185c1daff244b7920 Mon Sep 17 00:00:00 2001 From: John Hill Date: Sun, 29 Jan 2023 13:49:00 -0800 Subject: [PATCH] path change (#6224) --- e2e/playwright-ci.config.js | 2 +- e2e/playwright-performance.config.js | 4 ++-- e2e/playwright-visual.config.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/e2e/playwright-ci.config.js b/e2e/playwright-ci.config.js index cd8fd2e7e9..5c71514dc3 100644 --- a/e2e/playwright-ci.config.js +++ b/e2e/playwright-ci.config.js @@ -73,7 +73,7 @@ const config = { open: 'never', outputFolder: '../html-test-results' //Must be in different location due to https://github.com/microsoft/playwright/issues/12840 }], - ['junit', { outputFile: 'test-results/results.xml' }], + ['junit', { outputFile: '../test-results/results.xml' }], ['github'] ] }; diff --git a/e2e/playwright-performance.config.js b/e2e/playwright-performance.config.js index 7f4fae91c6..7d71255bd3 100644 --- a/e2e/playwright-performance.config.js +++ b/e2e/playwright-performance.config.js @@ -35,8 +35,8 @@ const config = { ], reporter: [ ['list'], - ['junit', { outputFile: 'test-results/results.xml' }], - ['json', { outputFile: 'test-results/results.json' }] + ['junit', { outputFile: '../test-results/results.xml' }], + ['json', { outputFile: '../test-results/results.json' }] ] }; diff --git a/e2e/playwright-visual.config.js b/e2e/playwright-visual.config.js index 34bc13d390..16ada0ef4e 100644 --- a/e2e/playwright-visual.config.js +++ b/e2e/playwright-visual.config.js @@ -40,7 +40,7 @@ const config = { ], reporter: [ ['list'], - ['junit', { outputFile: 'test-results/results.xml' }], + ['junit', { outputFile: '../test-results/results.xml' }], ['html', { open: 'on-failure', outputFolder: '../html-test-results' //Must be in different location due to https://github.com/microsoft/playwright/issues/12840