Created
December 2, 2015 22:03
-
-
Save samueleresca/041325a7b15d700fcceb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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