aboutsummaryrefslogtreecommitdiffstats
path: root/lib/grunt
diff options
context:
space:
mode:
authorIgor Minar2013-06-27 14:55:47 -0700
committerIgor Minar2013-06-27 14:55:47 -0700
commit344e195c60731f18529dacd35b478afb9dbeddf1 (patch)
tree3e5c36186aaed57f1c43534b8692d28e7ba5f222 /lib/grunt
parent2adad3ab81a037f26220d72400487802dff737e0 (diff)
downloadangular.js-344e195c60731f18529dacd35b478afb9dbeddf1.tar.bz2
chore(build): temporarily add more logging to debug flakiness on CI
Diffstat (limited to 'lib/grunt')
-rw-r--r--lib/grunt/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/grunt/utils.js b/lib/grunt/utils.js
index 38533f27..1696c226 100644
--- a/lib/grunt/utils.js
+++ b/lib/grunt/utils.js
@@ -45,7 +45,7 @@ module.exports = {
p.stdout.pipe(process.stdout);
p.stderr.pipe(process.stderr);
p.on('exit', function(code){
- if(code !== 0) grunt.fail.warn("Test(s) failed");
+ if(code !== 0) grunt.fail.warn("Karma test(s) failed. Exit code: " + code);
done();
});
},