Skip to content

Commit

Permalink
DEBUG let's see what information is being passed to Karma exactly
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp committed Jan 22, 2022
1 parent b715738 commit 623bb6b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions karma.conf-sauce.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = function(config) {
return process.exit(0);
}

config.set({
var data = {
basePath: '',
frameworks: ['qunit'],
singleRun: true,
Expand Down Expand Up @@ -85,5 +85,10 @@ module.exports = function(config) {
// Browsers to launch, commented out to prevent karma from starting
// too many concurrent browsers and timing sauce out.
browsers: _.keys(sauceBrowsers)
});
};

console.log(data);
return process.exit(0);

config.set(data);
};

0 comments on commit 623bb6b

Please sign in to comment.