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

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: Fix types 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
« no previous file with comments | « codereview.settings ('k') | lib/base.ts » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « codereview.settings ('k') | lib/base.ts » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698