Hi there, Im currently trying to setup my second testsuite (ex: test2) in jenkins to be able to run two test suits. Any one has experience on how to add a test suite to this simple setup? Thanks.
stages {
stage('Install dependencies and create folders') {
steps {
sh "yarn install --pure-lockfile"
sh "cd cypress && mkdir tmp && cd tmp && mkdir screenshots && mkdir videos"
}
}
stage('run tests on chrome') {
steps {
sh 'yarn test --browser chrome'
}
}
}