mirror of
https://github.com/apache/superset.git
synced 2026-04-09 19:35:21 +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
34 lines
812 B
JavaScript
34 lines
812 B
JavaScript
import React from 'react';
|
|
import { expect } from 'chai';
|
|
import { shallow } from 'enzyme';
|
|
|
|
import CollectionTable from '../../../src/CRUD/CollectionTable';
|
|
import mockDatasource from '../../fixtures/mockDatasource';
|
|
|
|
const props = {
|
|
collection: mockDatasource['7__table'].columns,
|
|
tableColumns: ['column_name', 'type', 'groupby'],
|
|
};
|
|
|
|
describe('CollectionTable', () => {
|
|
|
|
let wrapper;
|
|
let el;
|
|
|
|
beforeEach(() => {
|
|
el = <CollectionTable {...props} />;
|
|
wrapper = shallow(el);
|
|
});
|
|
|
|
it('is valid', () => {
|
|
expect(React.isValidElement(el)).to.equal(true);
|
|
});
|
|
|
|
it('renders a table', () => {
|
|
const length = mockDatasource['7__table'].columns.length;
|
|
expect(wrapper.find('table')).to.have.lengthOf(1);
|
|
expect(wrapper.find('tbody tr.row')).to.have.lengthOf(length);
|
|
});
|
|
|
|
});
|