123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import {Organization} from 'sentry-fixture/organization';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import GroupReleaseStats from 'sentry/components/group/releaseStats';
- describe('GroupReleaseStats', function () {
- const organization = Organization();
- const project = TestStubs.Project();
- const group = TestStubs.Group();
- beforeEach(() => {
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/issues/${group.id}/first-last-release/`,
- body: {firstRelease: group.firstRelease, lastRelease: group.lastRelease},
- });
- });
- const createWrapper = (
- props: Partial<React.ComponentProps<typeof GroupReleaseStats>>
- ) =>
- render(
- <GroupReleaseStats
- group={group}
- project={project}
- organization={organization}
- allEnvironments={TestStubs.Group()}
- environments={[]}
- {...props}
- />
- );
- it('renders all environments', function () {
- createWrapper({});
- expect(screen.getByText('Last 24 Hours')).toBeInTheDocument();
- expect(screen.getByText('Last 30 Days')).toBeInTheDocument();
- expect(screen.getByText('Last Seen')).toBeInTheDocument();
- expect(screen.getByText('First Seen')).toBeInTheDocument();
- // Displays counts
- expect(screen.getByText('3')).toBeInTheDocument();
- expect(screen.getByText('123')).toBeInTheDocument();
- });
- it('renders specific environments', function () {
- createWrapper({environments: TestStubs.Environments()});
- expect(screen.getByText('Last 24 Hours')).toBeInTheDocument();
- expect(screen.getByText('Last 30 Days')).toBeInTheDocument();
- expect(screen.getByText('Last Seen')).toBeInTheDocument();
- expect(screen.getByText('First Seen')).toBeInTheDocument();
- // Displays counts
- expect(screen.getByText('3')).toBeInTheDocument();
- expect(screen.getByText('123')).toBeInTheDocument();
- });
- });
|