File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -164,23 +164,17 @@ gulp.task('test', function(cb){
164164
165165gulp . task ( 'test-nodejs' , [ 'install-driver-into-sandbox' ] , function ( ) {
166166 return gulp . src ( 'test/**/*.test.js' )
167- . pipe ( jasmine ( {
168- // reporter: new reporters.JUnitXmlReporter({
169- // savePath: "build/nodejs-test-reports",
170- // consolidateAll: false
171- // }),
172- includeStackTrace : true
173- } ) ) ;
167+ . pipe ( jasmine ( {
168+ includeStackTrace : true ,
169+ verbose : true
170+ } ) ) ;
174171} ) ;
175172
176173gulp . task ( 'test-boltkit' , [ 'nodejs' ] , function ( ) {
177174 return gulp . src ( 'test/**/*.boltkit.it.js' )
178175 . pipe ( jasmine ( {
179- // reporter: new reporters.JUnitXmlReporter({
180- // savePath: "build/nodejs-test-reports",
181- // consolidateAll: false
182- // }),
183- includeStackTrace : true
176+ includeStackTrace : true ,
177+ verbose : true
184178 } ) ) ;
185179} ) ;
186180
You can’t perform that action at this time.
0 commit comments