Guest User

Untitled

a guest
May 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. describe('when <App /> renders', () => {
  2. const wrapper = shallow(<App />);
  3.  
  4. it('should render a string containing the coordinates', () => {
  5. expect(wrapper.text()).toEqual('The mouse position is (0, 0)');
  6. });
  7. });
Add Comment
Please, Sign In to add comment