first commit

This commit is contained in:
root
2026-03-14 09:49:00 +00:00
commit 708ff116e1
1958 changed files with 1718027 additions and 0 deletions

22
www/bower_components/c3/karma.conf.js vendored Normal file
View File

@@ -0,0 +1,22 @@
const path = require('path')
module.exports = config =>
config.set({
frameworks: ['jasmine', 'karma-typescript'],
files: ['htdocs/css/c3.css', 'src/**/*.ts', 'spec/**/*'],
preprocessors: {
'spec/**/*.ts': ['karma-typescript'],
'src/**/*.ts': ['karma-typescript']
},
karmaTypescriptConfig: {
coverageOptions: {
exclude: /spec/
},
reports: {
lcov: 'coverage'
}
},
reporters: ['spec', 'karma-typescript'],
browsers: ['Chrome'],
singleRun: true
})