padloc/karma.conf.js

15 lines
425 B
JavaScript
Raw Normal View History

module.exports = function (config) {
2017-06-18 14:18:28 +00:00
config.set({
frameworks: ["mocha", "chai"],
files: ["test/tests.js"],
reporters: ["progress"],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
browsers: ["ChromeHeadless"],
autoWatch: false,
// singleRun: false, // Karma captures browsers, runs the tests and exits
concurrency: Infinity,
2017-06-18 14:18:28 +00:00
});
};