Update argumenst for running tests

oggui/translations
Nicolas Arenas 2024-10-24 18:44:01 +02:00
parent a11ca596c7
commit 110565662d
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ pipeline {
echo 'Running Tests....'
script {
dir('ogWebconsole') {
docker.image("${IMAGE_ID}").withRun('-p 8080:8080') { c ->
docker.image("${IMAGE_ID}").withRun('-e CHROME_BIN=/usr/bin/chromium -v $(pwd)/karma.conf.js:/app/karma.conf.js -v $(pwd)/.env:/app/.env') { c ->
sh 'docekr exec -it ${c.id} ng test --watch=false --source-map=false --karma-config=karma.conf.js --browsers=ChromeHeadless --progress=false'
}
}