UNPKG

react-tabtab-next

Version:

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

16 lines (14 loc) 386 B
import React from 'react'; import TabModal from '../src/TabModal'; import {shallow} from 'enzyme'; import noop from 'noop3'; test('render Panel', () => { const component = shallow( <TabModal closeModal={noop} handleTabSequence={noop} handleTabChange={noop}> <span>fake child</span> </TabModal> ); expect(component).toMatchSnapshot(); })