diff --git a/Jenkinsfile b/Jenkinsfile index ffe5ac54..575df5c6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ def runPlaywrightTests(resultDir, browser, grep) { timeout(20) { sh 'mkdir -p ./test-results' sh """ - PLAYWRIGHT_JUNIT_OUTPUT_NAME=results.xml npx playwright test --project $browser --reporter=junit --grep "$grep"|| true + PLAYWRIGHT_JUNIT_OUTPUT_NAME=results.xml npx playwright test tests/_sample-test.spec.ts --project $browser --reporter=junit --grep "$grep"|| true """ } } finally { @@ -77,13 +77,5 @@ pipeline { } } } - - stage('Test: FR') { - steps { - withEnvFile("${params.TEST_RESULT_ROOT}/fr.env") { - runPlaywrightTests(params.TEST_RESULT_ROOT, params.BROWSER, params.GREP) - } - } - } } }