import {mountWithTheme} from 'sentry-test/enzyme'; import ResolutionBox from 'app/components/resolutionBox'; describe('ResolutionBox', function () { describe('render()', function () { it('handles inNextRelease', function () { const wrapper = mountWithTheme( ); expect(wrapper).toSnapshot(); }); it('handles inNextRelease with actor', function () { const wrapper = mountWithTheme( ); expect(wrapper).toSnapshot(); }); it('handles inRelease', function () { const wrapper = mountWithTheme( ); expect(wrapper).toSnapshot(); }); it('handles inRelease with actor', function () { const wrapper = mountWithTheme( ); expect(wrapper).toSnapshot(); }); it('handles default', function () { const wrapper = mountWithTheme(); expect(wrapper).toSnapshot(); }); it('handles inCommit', function () { const wrapper = mountWithTheme( ); expect(wrapper).toSnapshot(); }); }); });