mirror of
https://github.com/apache/superset.git
synced 2026-04-18 15:44:57 +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
29 lines
857 B
JavaScript
29 lines
857 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
|
|
import { initialState, queries, table } from './fixtures';
|
|
import SqlEditor from '../../../javascripts/SqlLab/components/SqlEditor';
|
|
import SqlEditorLeftBar from '../../../javascripts/SqlLab/components/SqlEditorLeftBar';
|
|
|
|
describe('SqlEditor', () => {
|
|
const mockedProps = {
|
|
actions: {},
|
|
database: {},
|
|
queryEditor: initialState.queryEditors[0],
|
|
latestQuery: queries[0],
|
|
tables: [table],
|
|
queries,
|
|
};
|
|
it('is valid', () => {
|
|
expect(
|
|
React.isValidElement(<SqlEditor {...mockedProps} />),
|
|
).to.equal(true);
|
|
});
|
|
it('render a SqlEditorLeftBar', () => {
|
|
const wrapper = shallow(<SqlEditor {...mockedProps} />);
|
|
expect(wrapper.find(SqlEditorLeftBar)).to.have.length(1);
|
|
});
|
|
});
|