mirror of
https://github.com/apache/superset.git
synced 2026-04-10 03:45:22 +00:00
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import configureStore from 'redux-mock-store';
|
|
import thunk from 'redux-thunk';
|
|
|
|
import { shallow } from 'enzyme';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
import sinon from 'sinon';
|
|
|
|
import App from '../../../javascripts/SqlLab/components/App';
|
|
import TabbedSqlEditors from '../../../javascripts/SqlLab/components/TabbedSqlEditors';
|
|
import { sqlLabReducer } from '../../../javascripts/SqlLab/reducers';
|
|
|
|
describe('App', () => {
|
|
const middlewares = [thunk];
|
|
const mockStore = configureStore(middlewares);
|
|
const store = mockStore(sqlLabReducer(undefined, {}));
|
|
|
|
let wrapper;
|
|
beforeEach(() => {
|
|
wrapper = shallow(<App />, {
|
|
context: { store },
|
|
}).dive();
|
|
});
|
|
it('is valid', () => {
|
|
expect(React.isValidElement(<App />)).to.equal(true);
|
|
});
|
|
it('should handler resize', () => {
|
|
sinon.spy(wrapper.instance(), 'getHeight');
|
|
wrapper.instance().handleResize();
|
|
expect(wrapper.instance().getHeight.callCount).to.equal(1);
|
|
wrapper.instance().getHeight.restore();
|
|
});
|
|
it('should render', () => {
|
|
expect(wrapper.find('.SqlLab')).to.have.length(1);
|
|
expect(wrapper.find(TabbedSqlEditors)).to.have.length(1);
|
|
});
|
|
});
|