mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 00:11:11 +00:00
21 lines
506 B
JavaScript
21 lines
506 B
JavaScript
|
|
module.exports = function (config) {
|
||
|
|
config.set({
|
||
|
|
browsers: ['ChromeHeadless'],
|
||
|
|
// The directory where the output file lives
|
||
|
|
basePath: 'target/karma',
|
||
|
|
// 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
|
||
|
|
},
|
||
|
|
junitReporter: {
|
||
|
|
outputDir: "target/results/cljs"
|
||
|
|
}
|
||
|
|
})
|
||
|
|
};
|