UNPKG

create-rx-app

Version:
11 lines (9 loc) 247 B
import React from 'react'; import { shallow } from 'enzyme'; import { App } from './App'; describe('<App />', () => { it('matches its snapshot', () => { const component = shallow(<App />); expect(component).toMatchSnapshot(); }); });