compact-base64
Version:
Base64 encoding and decoding for Node.JS and browsers without polyfills
25 lines (19 loc) • 524 B
JavaScript
// Karma configuration
// Generated on Fri Sep 08 2023 11:10:31 GMT+0200 (Central European Summer Time)
module.exports = function(config) {
config.set({
frameworks: [ 'mocha', 'webpack' ],
// list of files / patterns to load in the browser
files: [
{ pattern: 'test/harness.js', watched: false },
],
preprocessors: {
'test/harness.js': ['webpack']
},
webpack: {},
reporters: ['progress'],
autoWatch: false,
singleRun: true,
browsers: ['ChromeHeadless'],
})
}