UNPKG

react-universally

Version:

A starter kit for universal react applications.

14 lines (10 loc) 291 B
/* eslint-disable import/no-extraneous-dependencies */ import React from 'react'; import { shallow } from 'enzyme'; import Menu from '../index'; describe('<Home />', () => { test('renders', () => { const wrapper = shallow(<Menu />); expect(wrapper).toMatchSnapshot(); }); });