UNPKG

356 BJavaScriptView Raw
1import TestRenderer, { act } from 'react-test-renderer';
2/*
3 * Wrap rendering code in `act()`, for lifecycle purposes.
4 *
5 * https://reactjs.org/docs/test-utils.html#act
6 */
7
8export default ((...args) => {
9 let instance;
10 act(() => {
11 instance = TestRenderer.create(...args);
12 });
13 return instance;
14});
15//# sourceMappingURL=createTestInstance.js.map
\No newline at end of file