Update Jenkinsfile

Edit to unit testto be long runnoing
This commit is contained in:
Benjamin Tan 2025-12-13 17:33:12 +00:00
parent d73885d65c
commit 41804816e8

4
Jenkinsfile vendored
View file

@ -24,6 +24,10 @@ pipeline {
}
stage('Unit Test') {
steps {
for (int i = 0 ; i < 60; i++) {
echo "${i + 1}"
sleep 1
}
sh "mvn test"
}
}