mirror of
https://github.com/apache/superset.git
synced 2026-04-13 13:18:25 +00:00
* [sql lab] improvements to the left panel * better error handling with error notifications * table is added instantly with a loading image * Fixing tests * Fixed tests
30 lines
839 B
JavaScript
30 lines
839 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';
|
|
|
|
global.notify = {
|
|
error: () => {},
|
|
};
|
|
|
|
describe('SqlEditorLeftBar', () => {
|
|
const mockedProps = {
|
|
tables: [table],
|
|
queryEditor: defaultQueryEditor,
|
|
height: 0,
|
|
};
|
|
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);
|
|
});
|
|
});
|