mirror of
https://github.com/mruwnik/chicken-master.git
synced 2025-06-08 13:24:42 +02:00
18 lines
494 B
JavaScript
18 lines
494 B
JavaScript
module.exports = function (config) {
|
|
config.set({
|
|
browsers: ['ChromeHeadless'],
|
|
// The directory where the output file lives
|
|
basePath: 'target',
|
|
// The file itself
|
|
files: ['ci.js'],
|
|
frameworks: ['cljs-test'],
|
|
plugins: ['karma-cljs-test', 'karma-chrome-launcher'],
|
|
colors: true,
|
|
logLevel: config.LOG_INFO,
|
|
client: {
|
|
args: ["shadow.test.karma.init"],
|
|
singleRun: true
|
|
}
|
|
});
|
|
};
|