chore(build): temporarily add more logging to debug flakiness on CI

This commit is contained in:
Igor Minar 2013-06-27 14:55:47 -07:00
parent 2adad3ab81
commit 344e195c60
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ files = ['build/angular-scenario.js', ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs
autoWatch = false;
singleRun = true;
logLevel = LOG_INFO;
logLevel = LOG_DEBUG;
logColors = true;
browsers = ['Chrome'];

View file

@ -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();
});
},