mirror of
https://github.com/apache/superset.git
synced 2026-04-15 14:15:15 +00:00
* bumping the js libs * New linting rules * More linting * More * Done linting * npm >=4.5.0 * Bumping node * Tweaking the build * Fixing the damn build * Fixing the apps
26 lines
784 B
JavaScript
26 lines
784 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
|
|
import { table, defaultQueryEditor } from './fixtures';
|
|
import SqlEditorLeftBar from '../../../javascripts/SqlLab/components/SqlEditorLeftBar';
|
|
import TableElement from '../../../javascripts/SqlLab/components/TableElement';
|
|
|
|
|
|
describe('SqlEditorLeftBar', () => {
|
|
const mockedProps = {
|
|
tables: [table],
|
|
queryEditor: defaultQueryEditor,
|
|
};
|
|
it('is valid', () => {
|
|
expect(
|
|
React.isValidElement(<SqlEditorLeftBar {...mockedProps} />),
|
|
).to.equal(true);
|
|
});
|
|
it('renders a TableElement', () => {
|
|
const wrapper = mount(<SqlEditorLeftBar {...mockedProps} />);
|
|
expect(wrapper.find(TableElement)).to.have.length(1);
|
|
});
|
|
});
|