Skip to content

Instantly share code, notes, and snippets.

@dferber90
Created May 18, 2018 04:55
Show Gist options
  • Save dferber90/1b5c84a118e9f6b224f3d8a2c0c7b48d to your computer and use it in GitHub Desktop.
Save dferber90/1b5c84a118e9f6b224f3d8a2c0c7b48d to your computer and use it in GitHub Desktop.
Test a Render Prop!
describe('when <App /> renders', () => {
const wrapper = shallow(<App />);
it('should render a string containing the coordinates', () => {
expect(wrapper.text()).toEqual('The mouse position is (0, 0)');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment