12345678910111213141516171819202122232425262728293031 |
- import {Event as EventFixture} from 'sentry-fixture/event';
- import {Organization} from 'sentry-fixture/organization';
- import {render} from 'sentry-test/reactTestingLibrary';
- import QuickTrace from 'sentry/views/issueDetails/quickTrace';
- describe('IssueQuickTrace', () => {
- const defaultProps = {
- organization: Organization({features: ['performance-view']}),
- event: EventFixture({contexts: {trace: {trace_id: 100}}}),
- group: TestStubs.Group(),
- location: TestStubs.location(),
- };
- it('renders nothing without performance-view flag', () => {
- const {container} = render(
- <QuickTrace {...defaultProps} organization={Organization()} />
- );
- expect(container).toBeEmptyDOMElement();
- });
- it('renders nothing if event does not have a trace context', () => {
- const {container} = render(
- <QuickTrace {...defaultProps} event={EventFixture({contexts: {}})} />
- );
- expect(container).toBeEmptyDOMElement();
- });
- });
|