UNPKG

project-starter-dan

Version:

A project scaffolding tool.

10 lines (9 loc) 243 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.ok(wrapper.is('div'), 'has a div'); t.end(); });