Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
chore(build): temporarily add more logging to debug flakiness on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMinar committed Jun 27, 2013
1 parent 2adad3a commit 344e195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion karma-e2e.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'];

Expand Down
2 changes: 1 addition & 1 deletion lib/grunt/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
},
Expand Down

0 comments on commit 344e195

Please sign in to comment.