Skip to content

Commit 713b670

Browse files
committed
fix(tests): show stack traces for transpiler unitttests
1 parent cf169f1 commit 713b670

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gulpfile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,9 @@ gulp.task('test.dart/ci', function (done) {
436436
});
437437
gulp.task('test.transpiler.unittest', function (done) {
438438
return gulp.src('tools/transpiler/unittest/**/*.js')
439-
.pipe(jasmine())
439+
.pipe(jasmine({
440+
includeStackTrace: true
441+
}))
440442
});
441443
gulp.task('ci', function(done) {
442444
runSequence(

0 commit comments

Comments
 (0)