karma.conf.js 304 B

123456789101112
  1. const generate = require('videojs-generate-karma-config');
  2. module.exports = function(config) {
  3. // see https://github.com/videojs/videojs-generate-karma-config
  4. // for options
  5. const options = {};
  6. config = generate(config, options);
  7. // any other custom stuff not supported by options here!
  8. };