mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 07:47:50 +01:00
19 lines
535 B
JavaScript
19 lines
535 B
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
frameworks: ['jasmine'],
|
|
files: ['spec/**/*.js'],
|
|
reporters: ['progress'],
|
|
port: 9876, // karma web server port
|
|
colors: true,
|
|
logLevel: config.LOG_INFO,
|
|
browsers: ['ChromeHeadless'],
|
|
autoWatch: false,
|
|
// singleRun: false, // Karma captures browsers, runs the tests and exits
|
|
concurrency: Infinity,
|
|
plugins: [
|
|
'karma-jasmine',
|
|
'karma-chrome-launcher'
|
|
]
|
|
})
|
|
}
|