mirror of
https://github.com/apache/superset.git
synced 2026-04-09 03:16:07 +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
40 lines
1017 B
JavaScript
40 lines
1017 B
JavaScript
import React from 'react';
|
|
import sinon from 'sinon';
|
|
import configureStore from 'redux-mock-store';
|
|
import { expect } from 'chai';
|
|
import { shallow } from 'enzyme';
|
|
import DatasourceModal from '../../../../src/datasource/DatasourceModal';
|
|
import DatasourceControl from '../../../../src/explore/components/controls/DatasourceControl';
|
|
|
|
const defaultProps = {
|
|
name: 'datasource',
|
|
label: 'Datasource',
|
|
value: '1__table',
|
|
datasource: {
|
|
name: 'birth_names',
|
|
type: 'table',
|
|
uid: '1__table',
|
|
id: 1,
|
|
columns: [],
|
|
metrics: [],
|
|
database: {
|
|
backend: 'mysql',
|
|
name: 'main',
|
|
},
|
|
},
|
|
onChange: sinon.spy(),
|
|
};
|
|
|
|
describe('DatasourceControl', () => {
|
|
function setup() {
|
|
const mockStore = configureStore([]);
|
|
const store = mockStore({});
|
|
return shallow(<DatasourceControl {...defaultProps} />, { context: { store } }).dive();
|
|
}
|
|
|
|
it('renders a Modal', () => {
|
|
const wrapper = setup();
|
|
expect(wrapper.find(DatasourceModal)).to.have.lengthOf(1);
|
|
});
|
|
});
|