Index: gulpfile.js |
diff --git a/gulpfile.js b/gulpfile.js |
index 3a21f46a585dc0ca1a5af2d0c3ec482727722b40..e2125851f18c3fe16a77b6381ca8bfaab52ce279 100644 |
--- a/gulpfile.js |
+++ b/gulpfile.js |
@@ -81,6 +81,7 @@ gulp.task('test.unit', ['test.compile'], function(done) { |
} |
return gulp.src('build/test/**/*.js').pipe(mocha({ |
timeout: 4000, // Needed by the type-based tests :-( |
+ fullTrace: true, |
})); |
}); |
@@ -97,8 +98,7 @@ gulp.task('test.e2e', ['test.compile'], function(done) { |
// run node with a shell so we can wildcard all the .ts files |
var cmd = 'node ../lib/main.js --translateBuiltins --basePath=. --destination=. ' + |
- '--typingsRoot=typings/ ' + |
- '*.ts angular2/src/facade/lang.d.ts typings/es6-promise/es6-promise.d.ts'; |
+ '--typingsRoot=typings/'; |
// Paths must be relative to our source root, so run with cwd == dir. |
spawn('sh', ['-c', cmd], {stdio: 'inherit', cwd: dir}).on('close', function(code, signal) { |
if (code > 0) { |