Skip to content

Instantly share code, notes, and snippets.

@dferber90
Last active May 25, 2018 15:14
Show Gist options
  • Save dferber90/d53425f671aeb8c502718f4f06e7ef42 to your computer and use it in GitHub Desktop.
Save dferber90/d53425f671aeb8c502718f4f06e7ef42 to your computer and use it in GitHub Desktop.
Test a Render Prop!
describe('when <App /> renders', () => {
const wrapper = shallow(<App />)
.find(Mouse)
.renderProp('render', { x: 0, y: 0 });
it('should render a headline containing the coordinates', () => {
expect(wrapper.equals(<h1>The mouse position is (0, 0)</h1>)).toBe(true);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment