mirror of
https://github.com/Safe-Support-Chat/ocrcc-chatbox
synced 2024-11-01 00:55:26 +00:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
import Enzyme from 'enzyme';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|
|
|
|
Object.defineProperty(document, 'readyState', {
|
|
value: 'complete',
|
|
writable: true,
|
|
enumerable: true,
|
|
configurable: true,
|
|
});
|