import {mountWithTheme} from 'sentry-test/enzyme';
import MutedBox from 'app/components/mutedBox';
describe('MutedBox', function () {
describe('render()', function () {
it('handles ignoreUntil', function () {
const wrapper = mountWithTheme(
);
expect(wrapper).toSnapshot();
});
it('handles ignoreCount', function () {
const wrapper = mountWithTheme();
expect(wrapper).toSnapshot();
});
it('handles ignoreCount with ignoreWindow', function () {
const wrapper = mountWithTheme(
);
expect(wrapper).toSnapshot();
});
it('handles ignoreUserCount', function () {
const wrapper = mountWithTheme();
expect(wrapper).toSnapshot();
});
it('handles ignoreUserCount with ignoreUserWindow', function () {
const wrapper = mountWithTheme(
);
expect(wrapper).toSnapshot();
});
it('handles default', function () {
const wrapper = mountWithTheme();
expect(wrapper).toSnapshot();
});
});
});