import React from 'react';
import { shallow } from 'enzyme';
import { initialState, queries, table } from './fixtures';
import SqlEditor from '../../../src/SqlLab/components/SqlEditor';
import SqlEditorLeftBar from '../../../src/SqlLab/components/SqlEditorLeftBar';
describe('SqlEditor', () => {
const mockedProps = {
actions: {},
database: {},
queryEditor: initialState.sqlLab.queryEditors[0],
latestQuery: queries[0],
tables: [table],
queries,
getHeight: () => ('100px'),
editorQueries: [],
dataPreviewQueries: [],
};
it('is valid', () => {
expect(
React.isValidElement(),
).toBe(true);
});
it('render a SqlEditorLeftBar', () => {
const wrapper = shallow();
expect(wrapper.find(SqlEditorLeftBar)).toHaveLength(1);
});
});