Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created December 2, 2015 22:03
Show Gist options
  • Save samueleresca/041325a7b15d700fcceb to your computer and use it in GitHub Desktop.
Save samueleresca/041325a7b15d700fcceb to your computer and use it in GitHub Desktop.
//KARMA CONFIGURATIONS
module.exports = function(config) {
config.set({
// base path
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha'],
// PORT NUMBER
port: 9877,
colors: true,
autoWatch: true,
// CI: if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// LOGGING LEVEL: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment