Select Git revision
-
Steinwender, Tamara authored
Pull out nextcloudfilepicker styles to file-handling styles, styling, translation and function of clipboard
Steinwender, Tamara authoredPull out nextcloudfilepicker styles to file-handling styles, styling, translation and function of clipboard
karma.common.conf.js 700 B
module.exports = function(config) {
config.set({
basePath: 'dist',
frameworks: ['mocha'],
client: {
mocha: {
ui: 'tdd',
},
},
files: [
{pattern: './*.js', included: true, watched: true, served: true, type: 'module'},
{pattern: './**/*', included: false, watched: true, served: true},
],
autoWatch: true,
browsers: [
'ChromiumHeadlessNoSandbox',
'FirefoxHeadless',
],
customLaunchers: {
ChromiumHeadlessNoSandbox: {
base: 'ChromiumHeadless',
flags: ['--no-sandbox']
}
},
singleRun: false,
logLevel: config.LOG_ERROR
});
}