8714-devToTest #1547
|
@ -132,9 +132,16 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Run E2E') {
|
||||
steps {
|
||||
script {
|
||||
runCypressTests(['claim', 'ticket'])
|
||||
parallel{
|
||||
stage('Claim') {
|
||||
steps {
|
||||
sh 'docker-compose run e2e npx cypress run --config specPattern=test/cypress/integration/claim/**/*.spec.js'
|
||||
}
|
||||
}
|
||||
stage('Ticket') {
|
||||
steps {
|
||||
sh 'docker-compose run e2e npx cypress run --config specPattern=test/cypress/integration/ticket/**/*.spec.js'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue