mirror of
https://github.com/apache/superset.git
synced 2026-04-08 19:05:46 +00:00
* [lint] turn no-undef back on, set browser, cypress, and mocha env's, and fix issues * [lint] fix undefined var in TimeTable.jsx
28 lines
864 B
JavaScript
28 lines
864 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { expect } from 'chai';
|
|
import { Table } from 'reactable';
|
|
|
|
import { queries } from './fixtures';
|
|
import QueryTable from '../../../src/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);
|
|
});
|
|
});
|