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

Commit 344e195

Browse files
committed
chore(build): temporarily add more logging to debug flakiness on CI
1 parent 2adad3a commit 344e195

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

karma-e2e.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ files = ['build/angular-scenario.js', ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs
44

55
autoWatch = false;
66
singleRun = true;
7-
logLevel = LOG_INFO;
7+
logLevel = LOG_DEBUG;
88
logColors = true;
99
browsers = ['Chrome'];
1010

lib/grunt/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = {
4545
p.stdout.pipe(process.stdout);
4646
p.stderr.pipe(process.stderr);
4747
p.on('exit', function(code){
48-
if(code !== 0) grunt.fail.warn("Test(s) failed");
48+
if(code !== 0) grunt.fail.warn("Karma test(s) failed. Exit code: " + code);
4949
done();
5050
});
5151
},

0 commit comments

Comments
 (0)