UNPKG

awesome-react

Version:

A basic web app from React, called awesome-react

11 lines (9 loc) 254 B
import React from 'react'; import { shallow } from 'enzyme'; import App from './App'; describe('<App />', () => { it('should render a header', () => { const wrapper = shallow(<App />); expect(wrapper.find('header')).toHaveLength(1); }); });