Skip to content

Instantly share code, notes, and snippets.

@dakoctba
Forked from thevangelist/my-component.spec.js
Created January 16, 2017 19:32
Show Gist options
  • Save dakoctba/66642e2d4a47f4b1a6b57e0197dba486 to your computer and use it in GitHub Desktop.
Save dakoctba/66642e2d4a47f4b1a6b57e0197dba486 to your computer and use it in GitHub Desktop.
The only React.js component test you'll ever need (Enzyme + Chai)
import React from 'react';
import { shallow } from 'enzyme';
import MyComponent from '../src/my-component';
const wrapper = shallow(<MyComponent/>);
describe('(Component) MyComponent', () => {
it('renders without exploding', () => {
expect(wrapper).to.have.length(1);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment