chore(travis): clean up logs

Forward SauceConnect logs and Karma debug logs into a file and print these files at the very end of a build.
This commit is contained in:
Vojta Jina
2013-08-21 03:16:57 -07:00
parent c64a985307
commit 80d0f98263
9 changed files with 49 additions and 25 deletions

View File

@@ -1,7 +1,7 @@
var sharedConfig = require('./karma-shared.conf');
module.exports = function(config) {
sharedConfig(config);
sharedConfig(config, {testName: 'AngularJS: e2e', logFile: 'karma-e2e.log'});
config.set({
frameworks: [],
@@ -22,6 +22,4 @@ module.exports = function(config) {
suite: 'E2E'
}
});
config.sauceLabs.testName = 'AngularJS: e2e';
};