123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import {Organization} from 'sentry-fixture/organization';
- import {render} from 'sentry-test/reactTestingLibrary';
- import ProjectApdexScoreCard from 'sentry/views/projectDetail/projectScoreCards/projectApdexScoreCard';
- describe('ProjectDetail > ProjectApdex', function () {
- let endpointMock: jest.Mock;
- const organization = Organization();
- const selection = {
- projects: [1],
- environments: [],
- datetime: {
- start: null,
- end: null,
- period: '14d',
- utc: null,
- },
- };
- beforeEach(function () {
- endpointMock = MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events/`,
- body: {
- data: [],
- },
- status: 200,
- });
- });
- afterEach(function () {
- MockApiClient.clearMockResponses();
- });
- it('calls api with apdex', function () {
- render(
- <ProjectApdexScoreCard
- organization={{...organization, features: ['discover-basic', 'performance-view']}}
- selection={selection}
- isProjectStabilized
- hasTransactions
- />
- );
- expect(endpointMock).toHaveBeenNthCalledWith(
- 1,
- `/organizations/${organization.slug}/events/`,
- expect.objectContaining({
- query: {
- environment: [],
- field: ['apdex()'],
- project: ['1'],
- query: 'event.type:transaction count():>0',
- statsPeriod: '14d',
- },
- })
- );
- });
- });
|