Skip to content

Commit

Permalink
Merge branch 'master' into gg-keepColumnsStateLocal
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace Guo committed Jun 15, 2017
2 parents c5a2107 + f0a8ea6 commit bcea614
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion superset/assets/spec/javascripts/sqllab/AlertsWrapper_spec.jsx
@@ -1,11 +1,31 @@
import React from 'react';
import { describe, it } from 'mocha';
import { expect } from 'chai';

import { shallow } from 'enzyme';
import AlertContainer from 'react-alert';
import AlertsWrapper from '../../../javascripts/components/AlertsWrapper';

describe('AlertsWrapper', () => {
let wrapper;

beforeEach(() => {
wrapper = shallow(<AlertsWrapper />);
});

it('is valid', () => {
expect(React.isValidElement(<AlertsWrapper />)).to.equal(true);
});

it('renders AlertContainer', () => {
expect(wrapper.find(AlertContainer)).to.have.length(1);
});

it('expects AlertContainer to have correct props', () => {
const alertContainerProps = wrapper.find(AlertContainer).props();
expect(alertContainerProps.offset).to.be.equal(14);
expect(alertContainerProps.position).to.be.equal('top right');
expect(alertContainerProps.theme).to.be.equal('dark');
expect(alertContainerProps.time).to.be.equal(5000);
expect(alertContainerProps.transition).to.be.equal('fade');
});
});

0 comments on commit bcea614

Please sign in to comment.