UNPKG

react-tabtab-next

Version:

A mobile support, draggable, editable and api based Tab for ReactJS

14 lines (12 loc) 291 B
import React from 'react'; import Panel from '../src/Panel'; import { shallow } from 'enzyme'; import 'jest-styled-components' test('render Panel', () => { const component = shallow( <Panel> <span>panel content</span> </Panel> ); expect(component).toMatchSnapshot(); })