2017-11-28 11:05:58 -05:00
|
|
|
/**
|
2018-09-24 15:04:37 -05:00
|
|
|
* @prettier
|
2017-11-28 11:05:58 -05:00
|
|
|
* Setup configuration for Jest
|
2017-12-03 05:14:17 -05:00
|
|
|
* This file includes global settings for the JEST environment.
|
2017-11-28 11:05:58 -05:00
|
|
|
*/
|
|
|
|
import 'raf/polyfill';
|
2018-10-01 00:06:30 -05:00
|
|
|
import { configure } from 'enzyme';
|
2017-11-28 11:05:58 -05:00
|
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
|
|
|
2018-10-01 00:06:30 -05:00
|
|
|
configure({ adapter: new Adapter() });
|
2018-07-21 13:49:10 -05:00
|
|
|
|
2018-09-24 15:04:37 -05:00
|
|
|
global.__APP_VERSION__ = '1.0.0';
|
|
|
|
|
|
|
|
// mocking few DOM methods
|
|
|
|
if (global.document) {
|
|
|
|
document.createRange = jest.fn(() => ({
|
|
|
|
selectNodeContents: () => {},
|
|
|
|
}));
|
|
|
|
document.execCommand = jest.fn();
|
|
|
|
}
|