UNPKG

create-component-template

Version:
5 lines (4 loc) 341 B
"use strict"; module.exports = function (componentName) { return "import React from 'react';\nimport { " + componentName + " } from '../';\n\ndescribe('<" + componentName + " />', () => {\n it('renders succesfully', () => {\n const wrapper = mount(<" + componentName + " />);\n expect(wrapper).toMatchSnapshot();\n });\n});\n"; };