UNPKG

project-starter-dan

Version:

A project scaffolding tool.

10 lines (9 loc) 254 B
import React from 'react'; import test from 'tape'; import { shallow } from 'enzyme'; import App from '../components/App'; test('<App />', (t) => { const wrapper = shallow(<App />); t.equal(wrapper.find('div').length, 1, 'has a div'); t.end(); });