UNPKG

react-data-export

Version:

A set of tools to export dataset from react to different formats.

18 lines (12 loc) 404 B
import React from 'react'; import { shallow } from 'enzyme'; import ExcelColumn from '../../src/ExcelPlugin/elements/ExcelColumn'; describe('React Data Export unit test', () => { test('should render ExcelColumn', () => { const wrapper = shallow(<ExcelColumn label={'test'} value={'test'} />); expect(wrapper.html()).toMatchSnapshot(); }); });