cyclejs/cycle-core

View on GitHub
history/karma.conf.js

Summary

Maintainability
A
0 mins
Test Coverage
const deepmerge = require('deepmerge');
const common = require('../karma.conf.js');

module.exports = function(config) {
  const newCommon = Object.assign({}, common, {
    browsers: common.browsers
      ? common.browsers.filter(s => s !== 'BS_IE_10')
      : undefined,
  });

  config.set(
    deepmerge(newCommon, {
      browserStack: {
        name: 'Cycle.js history driver',
      },
    })
  );
};