From 75b013826ae5ae98e9f0a4dcf9cc94fcb2eed1aa Mon Sep 17 00:00:00 2001 From: Murad Talibov Date: Tue, 5 Nov 2024 10:32:08 +0100 Subject: [PATCH] Avoid using rm command in scripts to make it work cross-platform --- src/test/playwright/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/playwright/package.json b/src/test/playwright/package.json index cd6cd293e8a3..12da3b40efed 100644 --- a/src/test/playwright/package.json +++ b/src/test/playwright/package.json @@ -18,7 +18,7 @@ "playwright:test:slow": "PLAYWRIGHT_JUNIT_OUTPUT_NAME=./test-reports/results-slow.xml playwright test e2e --project=slow-tests --workers 1", "playwright:open": "playwright test e2e --ui", "playwright:setup": "npx playwright install --with-deps chromium && playwright test init", - "merge-reports": "junit-merge ./test-reports/results-fast.xml ./test-reports/results-slow.xml -o ./test-reports/results.xml; rm ./test-reports/results-fast.xml; rm ./test-reports/results-slow.xml", + "merge-reports": "junit-merge ./test-reports/results-fast.xml ./test-reports/results-slow.xml -o ./test-reports/results.xml", "update": "ncu -i --format group" } }