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){
164
164
165
165
gulp . task ( 'test-nodejs' , [ 'install-driver-into-sandbox' ] , function ( ) {
166
166
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
+ } ) ) ;
174
171
} ) ;
175
172
176
173
gulp . task ( 'test-boltkit' , [ 'nodejs' ] , function ( ) {
177
174
return gulp . src ( 'test/**/*.boltkit.it.js' )
178
175
. 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
184
178
} ) ) ;
185
179
} ) ;
186
180
You can’t perform that action at this time.
0 commit comments