first commit

This commit is contained in:
2025-10-26 23:10:15 +08:00
commit 8f0345b7be
14961 changed files with 2356381 additions and 0 deletions

37
node_modules/indefinite/karma.conf.js generated vendored Normal file
View File

@@ -0,0 +1,37 @@
// Karma configuration
// Generated on Fri Oct 23 2015 14:00:27 GMT-0400 (EDT)
module.exports = function(config) {
config.set({
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha'],
reporters: ['dots'],
browsers: [ 'Chrome' ],
preprocessors: {
'test/**/*.js': ['webpack']
},
// list of files / patterns to load in the browser
files: [
'node_modules/babel-polyfill/dist/polyfill.js',
'test/**/*.js'
],
webpack: {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
}
}
]
}
},
logLevel: config.LOG_ERROR
});
};