mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
* redux visualize modal * redux visualize modal - apply redux - add unit test for connect container component - fix lint error * redux visualize modal - apply redux - add unit test for connect container component - fix lint error
29 lines
910 B
JavaScript
29 lines
910 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
import { Table } from 'reactable';
|
|
|
|
import { queries } from './fixtures';
|
|
import QueryTable from '../../../javascripts/SqlLab/components/QueryTable';
|
|
|
|
describe('QueryTable', () => {
|
|
const mockedProps = {
|
|
queries,
|
|
};
|
|
it('is valid', () => {
|
|
expect(React.isValidElement(<QueryTable />)).to.equal(true);
|
|
});
|
|
it('is valid with props', () => {
|
|
expect(
|
|
React.isValidElement(<QueryTable {...mockedProps} />),
|
|
).to.equal(true);
|
|
});
|
|
it('renders a proper table', () => {
|
|
const wrapper = shallow(<QueryTable {...mockedProps} />);
|
|
expect(wrapper.find(Table)).to.have.length(1);
|
|
expect(wrapper.find(Table).shallow().find('table')).to.have.length(1);
|
|
expect(wrapper.find(Table).shallow().find('table').find('Tr')).to.have.length(2);
|
|
});
|
|
});
|