Skip to content

Commit e3a0dfe

Browse files
committed
Print executed test names in Jasmine
This is more convenient and interactive then printing dots.
1 parent bbb9495 commit e3a0dfe

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

gulpfile.babel.js

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -164,23 +164,17 @@ gulp.task('test', function(cb){
164164

165165
gulp.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

176173
gulp.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

0 commit comments

Comments
 (0)