Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Emxemplo retirado da documentaçao do redux-saga
  2.  
  3. import React from 'react';
  4. import Intro from '../Intro';
  5.  
  6. import renderer from 'react-test-renderer';
  7.  
  8. test('renders correctly', () => {
  9. const tree = renderer.create(<Intro />).toJSON();
  10. expect(tree).toMatchSnapshot();
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement