SHARE
TWEET

Untitled

a guest Mar 7th, 2017 90 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. pipeline {
  2.    agent any
  3.    node ('cf_slave') {
  4.       checkout scm
  5.    }
  6.    stages {  
  7.       stage ("Unit Tests") {
  8.          steps {
  9.             sh "./node_modules/.bin/mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./testResults/results.xml"
  10.             junit allowEmptyResults: true, testResults: 'testResults/results.xml'
  11.          }
  12.       }
  13.    }
  14. }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top