1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import {DetailedEventsFixture} from 'sentry-fixture/events';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {act, render, screen} from 'sentry-test/reactTestingLibrary';
- import GroupingStore from 'sentry/stores/groupingStore';
- import GroupMergedView from 'sentry/views/issueDetails/groupMerged';
- describe('Issues -> Merged View', function () {
- const events = DetailedEventsFixture();
- const mockData = {
- merged: [
- {
- latestEvent: events[0],
- state: 'unlocked',
- id: '2c4887696f708c476a81ce4e834c4b02',
- },
- {
- latestEvent: events[1],
- state: 'unlocked',
- id: 'e05da55328a860b21f62e371f0a7507d',
- },
- ],
- };
- beforeEach(function () {
- GroupingStore.init();
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/issues/groupId/hashes/?limit=50&query=',
- body: mockData.merged,
- });
- });
- it('renders initially with loading component', async function () {
- const {organization, project, router} = initializeOrg({
- router: {
- params: {groupId: 'groupId'},
- },
- });
- render(
- <GroupMergedView
- organization={organization}
- project={project}
- params={{groupId: 'groupId'}}
- location={router.location}
- />,
- {router, organization}
- );
- expect(screen.getByTestId('loading-indicator')).toBeInTheDocument();
- await act(tick);
- });
- it('renders with mocked data', async function () {
- const {organization, project, router} = initializeOrg({
- router: {
- params: {groupId: 'groupId'},
- },
- });
- render(
- <GroupMergedView
- organization={organization}
- project={project}
- params={{groupId: 'groupId'}}
- location={router.location}
- />,
- {router, organization}
- );
- expect(await screen.findByText(mockData.merged[0].id)).toBeInTheDocument();
- const title = await screen.findByText('Fingerprints included in this issue');
- expect(title.parentElement).toHaveTextContent(
- 'Fingerprints included in this issue (2)'
- );
- });
- });
|