import React from 'react' import { shallow } from 'enzyme' import { expect } from 'chai' import Header from './header' import '../enzyme-conf.spec' describe('
', function() { it('renders', function() { shallow(
) }) it('contains the word Hackable', function() { const wrapper = shallow(
) expect(wrapper).to.contain.text('Hackable') }) })