Created
May 18, 2018 04:55
-
-
Save dferber90/1b5c84a118e9f6b224f3d8a2c0c7b48d to your computer and use it in GitHub Desktop.
Test a Render Prop!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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