123456789101112131415161718192021222324252627282930313233343536373839 |
- import React from 'react';
- import {shallow} from 'enzyme';
- import MutedBox from 'app/components/mutedBox';
- describe('MutedBox', function() {
- describe('render()', function() {
- it('handles ignoreUntil', function() {
- const wrapper = shallow(
- <MutedBox statusDetails={{ignoreUntil: '2017-06-21T19:45:10Z'}} />
- );
- expect(wrapper).toMatchSnapshot();
- });
- it('handles ignoreCount', function() {
- const wrapper = shallow(<MutedBox statusDetails={{ignoreUserCount: 100}} />);
- expect(wrapper).toMatchSnapshot();
- });
- it('handles ignoreCount with ignoreWindow', function() {
- const wrapper = shallow(
- <MutedBox statusDetails={{ignoreCount: 100, ignoreWindow: 1}} />
- );
- expect(wrapper).toMatchSnapshot();
- });
- it('handles ignoreUserCount', function() {
- const wrapper = shallow(<MutedBox statusDetails={{ignoreUserCount: 100}} />);
- expect(wrapper).toMatchSnapshot();
- });
- it('handles ignoreUserCount with ignoreUserWindow', function() {
- const wrapper = shallow(
- <MutedBox statusDetails={{ignoreUserCount: 100, ignoreUserWindow: 1}} />
- );
- expect(wrapper).toMatchSnapshot();
- });
- it('handles default', function() {
- const wrapper = shallow(<MutedBox statusDetails={{}} />);
- expect(wrapper).toMatchSnapshot();
- });
- });
- });
|