mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-27 06:54:01 +00:00
chore(build): temporarily add more logging to debug flakiness on CI
This commit is contained in:
parent
2adad3ab81
commit
344e195c60
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ files = ['build/angular-scenario.js', ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs
|
||||||
|
|
||||||
autoWatch = false;
|
autoWatch = false;
|
||||||
singleRun = true;
|
singleRun = true;
|
||||||
logLevel = LOG_INFO;
|
logLevel = LOG_DEBUG;
|
||||||
logColors = true;
|
logColors = true;
|
||||||
browsers = ['Chrome'];
|
browsers = ['Chrome'];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ module.exports = {
|
||||||
p.stdout.pipe(process.stdout);
|
p.stdout.pipe(process.stdout);
|
||||||
p.stderr.pipe(process.stderr);
|
p.stderr.pipe(process.stderr);
|
||||||
p.on('exit', function(code){
|
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();
|
done();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue