123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {EventEntries} from 'sentry/components/events/eventEntries';
- describe('EventEntries', function () {
- const defaultProps = {
- organization: TestStubs.Organization(),
- project: TestStubs.Project(),
- event: TestStubs.Event(),
- location: TestStubs.location(),
- };
- beforeEach(function () {
- const project = TestStubs.Project({platform: 'javascript'});
- MockApiClient.addMockResponse({
- url: '/projects/org-slug/project-slug/events/1/grouping-info/',
- });
- MockApiClient.addMockResponse({
- url: '/projects/org-slug/project-slug/events/1/committers/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: [project],
- });
- });
- it('renders the replay section in the correct place', async function () {
- render(
- <EventEntries
- {...defaultProps}
- event={TestStubs.Event({
- entries: [TestStubs.EventEntry(), TestStubs.EventEntryDebugMeta()],
- contexts: {
- replay_id: 1,
- },
- })}
- />,
- {organization: TestStubs.Organization({features: ['session-replay']})}
- );
- await screen.findByText(/message/i);
- const sections = screen.getAllByTestId(/event-section/);
- expect(sections).toHaveLength(5); // event tags + 3 entries + event grouping
- // Replay should be after message but before images loaded
- expect(sections[1]).toHaveTextContent(/message/i);
- expect(sections[2]).toHaveTextContent(/replay/i);
- expect(sections[3]).toHaveTextContent(/images loaded/i);
- });
- });
|