multimediaobject
Version:
Multimediaobject library
143 lines (115 loc) • 3.42 kB
JavaScript
const { uglify } = require('rollup-plugin-uglify');
const babel = require('rollup-plugin-babel');
const commonJS = require('rollup-plugin-commonjs');
const resolve = require('rollup-plugin-node-resolve');
const babelConf = {
presets: [
[
'es2015',
{
modules: false,
},
],
],
plugins: [
'external-helpers',
],
babelrc: false,
};
// Karma configuration
// Generated on Tue Jan 17 2017 19:19:58 GMT+0100 (Romance Standard Time)
const dirname = './';
module.exports = function (config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: dirname,
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'build/index.js',
'src/utils/utils.js',
'test/utils/*.test.js',
'test/lib/*.test.js',
'test/MultimediaObject/*.test.js',
],
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
// optionally, configure the reporter
coverageReporter: {
reporters: [
{
type: 'text-summary',
},
{
type: 'html',
dir: 'coverage/',
},
],
},
preprocessors: {
'build/index.js': ['rollup', 'coverage'],
'src/utils/utils.js': ['rollupUtils', 'coverage'],
'test/lib/*.test.js': ['rollupUtils', 'coverage'],
'test/MultimediaObject/*.test.js': ['rollup'],
'test/utils/*.test.js': ['rollup'],
},
rollupPreprocessor: {
plugins: [
resolve(),
commonJS({
include: 'node_modules/**',
}),
babel(babelConf),
uglify(),
],
output: {
name: 'MultimediaObject',
format: 'iife',
sourceMap: 'inline', // sensible for testing
},
},
customPreprocessors: {
/**
* Clones the base preprocessor, but overwrites
* its options with those defined below...
*/
rollupUtils: {
base: 'rollup',
options: {
output: {
name: 'utils',
format: 'iife',
sourceMap: 'inline', // sensible for testing
},
}
}
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['spec', 'coverage'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
});
};