import {Organization} from 'fixtures/js-stubs/organization'; import {render, screen} from 'sentry-test/reactTestingLibrary'; import {Breadcrumb} from 'sentry/components/profiling/breadcrumb'; describe('Breadcrumb', function () { it('renders the profiling link', function () { const organization = Organization(); render( ); expect(screen.getByText('Profiling')).toBeInTheDocument(); expect(screen.getByRole('link', {name: 'Profiling'})).toHaveAttribute( 'href', `/organizations/${organization.slug}/profiling/` ); expect(screen.getByText('foo')).toBeInTheDocument(); }); });