karma.conf.js 353 B

12345678910111213141516
  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. serverBrowsers() {
  7. return [];
  8. }
  9. };
  10. config = generate(config, options);
  11. // any other custom stuff not supported by options here!
  12. };