import React from 'react';
import {shallow} from 'enzyme';
import MutedBox from 'app/components/mutedBox';
describe('MutedBox', function() {
describe('render()', function() {
it('handles ignoreUntil', function() {
let wrapper = shallow(
);
expect(wrapper).toMatchSnapshot();
});
it('handles ignoreCount', function() {
let wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
it('handles ignoreCount with ignoreWindow', function() {
let wrapper = shallow(
);
expect(wrapper).toMatchSnapshot();
});
it('handles ignoreUserCount', function() {
let wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
it('handles ignoreUserCount with ignoreUserWindow', function() {
let wrapper = shallow(
);
expect(wrapper).toMatchSnapshot();
});
it('handles default', function() {
let wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
});
});