Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Unified Diff: gulpfile.js

Issue 2225953002: Strip more unused features. (Closed) Base URL: git@github.com:dart-lang/js_facade_gen.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gulpfile.js
diff --git a/gulpfile.js b/gulpfile.js
index 3a21f46a585dc0ca1a5af2d0c3ec482727722b40..5571098b31bccfdb46935e3b7cc146cdd974e287 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,
}));
});
@@ -98,7 +99,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';
+ '*.ts typings/es6-promise/es6-promise.d.ts';
// 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) {

Powered by Google App Engine
This is Rietveld 408576698