1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import type {TableData} from 'sentry/utils/discover/discoverQuery';
- import {useLocation} from 'sentry/utils/useLocation';
- import usePageFilters from 'sentry/utils/usePageFilters';
- import WebVitalMeters from 'sentry/views/insights/browser/webVitals/components/webVitalMeters';
- import type {ProjectScore} from 'sentry/views/insights/browser/webVitals/types';
- jest.mock('sentry/utils/useLocation');
- jest.mock('sentry/utils/usePageFilters');
- describe('WebVitalMeters', function () {
- const organization = OrganizationFixture();
- const projectScore: ProjectScore = {
- lcpWeight: 30,
- fcpWeight: 20,
- clsWeight: 15,
- ttfbWeight: 10,
- inpWeight: 10,
- };
- const projectData: TableData = {
- data: [],
- };
- beforeEach(function () {
- jest.mocked(useLocation).mockReturnValue({
- pathname: '',
- search: '',
- query: {},
- hash: '',
- state: undefined,
- action: 'PUSH',
- key: '',
- });
- jest.mocked(usePageFilters).mockReturnValue({
- isReady: true,
- desyncedFilters: new Set(),
- pinnedFilters: new Set(),
- shouldPersist: true,
- selection: {
- datetime: {
- period: '10d',
- start: null,
- end: null,
- utc: false,
- },
- environments: [],
- projects: [],
- },
- });
- });
- it('renders web vital meters with interaction to next paint', async () => {
- render(<WebVitalMeters projectData={projectData} projectScore={projectScore} />, {
- organization,
- });
- await screen.findByText('Largest Contentful Paint');
- screen.getByText('First Contentful Paint');
- screen.getByText('Cumulative Layout Shift');
- screen.getByText('Time To First Byte');
- screen.getByText('Interaction to Next Paint');
- });
- });
|