mirror of
https://github.com/FormidableLabs/react-fast-compare.git
synced 2026-02-01 17:46:42 +00:00
- Refactor the test directory structure. - Imports the `node` tests into the browser, building with webpack. They are the source of truth. - Run headless chrome in Travis. - Run IE9 in Appveyor. - Use `builder` to parallelize running lint and various tests. - Fixes #7
16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(config) {
|
|
require('./karma.conf.js')(config);
|
|
config.set({
|
|
plugins: config.plugins.concat('karma-ie-launcher'),
|
|
browsers: ['IE9'],
|
|
customLaunchers: {
|
|
IE9: {
|
|
base: 'IE',
|
|
'x-ua-compatible': 'IE=EmulateIE9'
|
|
}
|
|
}
|
|
});
|
|
};
|