Skip to content

Instantly share code, notes, and snippets.

@webschik
Created December 30, 2018 20:27
Show Gist options
  • Select an option

  • Save webschik/46d7c6773b3443c160d7bf008bbbccfe to your computer and use it in GitHub Desktop.

Select an option

Save webschik/46d7c6773b3443c160d7bf008bbbccfe to your computer and use it in GitHub Desktop.
WebStorm template for Jest component test
import {shallow} from 'enzyme';
import React from 'react';
describe('Components', () => {
describe(${COMPONENT_NAME}, () => {
it('should render itself [smoke test]', () => {
const props = {};
const wrapper = shallow(<${COMPONENT_NAME} {...props} />);
expect(wrapper).toMatchSnapshot();
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment