logseq/karma.conf.js

19 lines
536 B
JavaScript
Raw Normal View History

2024-08-29 04:50:50 +00:00
module.exports = function (config) {
config.set({
browsers: ['Chrome'],
// The directory where the output file lives
basePath: 'static/rtc-e2e-test-karma',
// The file itself
files: ['main.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,
testvar: config.testvar
2024-08-29 04:50:50 +00:00
}
})
};