mirror of https://github.com/status-im/reagent.git
21 lines
554 B
JavaScript
21 lines
554 B
JavaScript
module.exports = function (config) {
|
|
config.set({
|
|
browsers: ['ChromeHeadless'],
|
|
basePath: '../../target/bundle-adv/resources/public/',
|
|
files: ['js/out/karma.js'],
|
|
frameworks: ['cljs-test'],
|
|
preprocessors: {
|
|
'js/out/karma.js': ['webpack', 'sourcemap']
|
|
},
|
|
colors: true,
|
|
logLevel: config.LOG_INFO,
|
|
client: {
|
|
args: ['reagenttest.runtests.karma_tests'],
|
|
},
|
|
singleRun: true,
|
|
webpack: {
|
|
mode: 'production'
|
|
}
|
|
});
|
|
};
|