File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ def runTests(String type,String version){
1414 ./node_modules/.bin/mocha --timeout 10000 -R xunit test-basic/ --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/test-basic-reports.xml -g \' logging|archivePath\' --invert || true
1515 ./node_modules/.bin/gulp setupProxyTests || true
1616 ./node_modules/.bin/mocha --timeout 10000 -R xunit test-basic-proxy/lib/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/test-basic-proxy-reports.xml -g \' logging|archivePath\' --invert || true
17+ node etc/test-teardown.js -u admin:admin
1718 '''
1819
1920}
@@ -54,6 +55,7 @@ def runE2ETests(String type,String version){
5455 ../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-multipleWorker.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-multipleWorker-results.xml || true
5556 ../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-transactions.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-transactions-results.js.xml || true
5657 ../node_modules/.bin/mocha -R xunit --timeout 60000 -R xunit "nodejs-ds-dynamic.js" --reporter mocha-junit-reporter --reporter-options mochaFile=$WORKSPACE/ds-dynamic-results.xml || true
58+ node etc/test-teardown-qa.js
5759 '''
5860 junit ' **/*.xml'
5961
Original file line number Diff line number Diff line change @@ -357,7 +357,6 @@ function setupUsers(manager, done) {
357357
358358 response . data [ 'user-default-list' ] [ 'list-items' ] [ 'list-item' ] .
359359 forEach ( function ( user ) {
360- console . log ( user )
361360 userName = user . nameref ;
362361 if ( ! valcheck . isUndefined ( requiredUsers [ userName ] ) ) {
363362 requiredUsers [ userName ] = undefined ;
@@ -366,7 +365,6 @@ function setupUsers(manager, done) {
366365
367366 var missingUsers = Object . keys ( requiredUsers ) . map ( function ( key ) {
368367 var user = requiredUsers [ key ] ;
369- console . log ( user )
370368 if ( ! valcheck . isUndefined ( user ) ) {
371369 return user ;
372370 }
Original file line number Diff line number Diff line change @@ -559,7 +559,7 @@ function setup(manager) {
559559 } ) ;
560560 } else {
561561 console . log ( testconfig . testServerName + ' test server is available on port ' +
562- JSON . parse ( response . data ) . port ) ;
562+ response . data . port ) ;
563563 }
564564 } ) ;
565565}
You can’t perform that action at this time.
0 commit comments