@ibrahimrahmani/react-export-excel
Version:
A tool to export dataset from react to excel format.
18 lines (12 loc) • 404 B
JavaScript
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();
});
});