11 lines
297 B
JavaScript
11 lines
297 B
JavaScript
import React from 'react';
|
|
import { findRenderedComponentWithType, renderIntoDocument } from 'react-dom/test-utils';
|
|
|
|
|
|
export function createTestComponent(TestComponent, props) {
|
|
return findRenderedComponentWithType(
|
|
renderIntoDocument(<TestComponent {...props}/>),
|
|
TestComponent
|
|
);
|
|
}
|