mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Run frontend unit tests in separate unit tests as they spawn their own docker containers
This commit is contained in:
parent
00f1450b94
commit
8da5c535ec
1 changed files with 8 additions and 1 deletions
9
services/web/Jenkinsfile
vendored
9
services/web/Jenkinsfile
vendored
|
@ -63,7 +63,14 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
steps {
|
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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue