mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
* only show single run query button, allow async if possible * only pass the needed props, rather than entire objects to the component * add simple test * fix linting
35 lines
930 B
JavaScript
35 lines
930 B
JavaScript
import React from 'react';
|
|
import { expect } from 'chai';
|
|
import { describe, it, beforeEach } from 'mocha';
|
|
import { shallow } from 'enzyme';
|
|
|
|
import RunQueryActionButton
|
|
from '../../../../javascripts/SqlLab/components/RunQueryActionButton';
|
|
import Button from '../../../../javascripts/components/Button';
|
|
|
|
describe('RunQueryActionButton', () => {
|
|
let wrapper;
|
|
const defaultProps = {
|
|
allowAsync: false,
|
|
dbId: 1,
|
|
queryState: 'pending',
|
|
runQuery: () => {}, // eslint-disable-line
|
|
selectedText: null,
|
|
stopQuery: () => {}, // eslint-disable-line
|
|
};
|
|
|
|
beforeEach(() => {
|
|
wrapper = shallow(<RunQueryActionButton {...defaultProps} />);
|
|
});
|
|
|
|
it('is a valid react element', () => {
|
|
expect(
|
|
React.isValidElement(<RunQueryActionButton {...defaultProps} />)
|
|
).to.equal(true);
|
|
});
|
|
|
|
it('renders a single Button', () => {
|
|
expect(wrapper.find(Button)).to.have.lengthOf(1);
|
|
});
|
|
});
|