(DecoratedComponent)
| 3 | import { DragDropContext } from 'react-dnd'; |
| 4 | |
| 5 | export default function wrapInTestContext(DecoratedComponent) { |
| 6 | class TestStub extends Component { |
| 7 | render() { |
| 8 | return <DecoratedComponent {...this.props} />; |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | return DragDropContext(TestBackend)(TestStub); |
| 13 | } |
no test coverage detected