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