import {render} from 'sentry-test/reactTestingLibrary'; import TeamResolutionTime from 'sentry/views/organizationStats/teamInsights/teamResolutionTime'; describe('TeamResolutionTime', () => { it('should render graph of issue time to resolution', () => { const team = TestStubs.Team(); const organization = TestStubs.Organization(); const timeToResolutionApi = MockApiClient.addMockResponse({ url: `/teams/${organization.slug}/${team.slug}/time-to-resolution/`, body: TestStubs.TeamResolutionTime(), }); render( ); expect(timeToResolutionApi).toHaveBeenCalledTimes(1); }); });