Run frontend unit tests in separate unit tests as they spawn their own docker containers

This commit is contained in:
Alasdair Smith 2018-02-19 14:55:33 +00:00
parent 00f1450b94
commit 8da5c535ec

View file

@ -63,7 +63,14 @@ pipeline {
}
}
steps {
sh 'make --no-print-directory test_unit test_frontend MOCHA_ARGS="--reporter tap"'
sh 'make --no-print-directory test_unit MOCHA_ARGS="--reporter tap"'
}
}
stage('Frontend Unit Test') {
steps {
// Spawns its own docker containers
sh 'make --no-print-directory test_frontend'
}
}