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(
);
expect(container).toBeEmptyDOMElement();
});
it('renders nothing if event does not have a trace context', () => {
const {container} = render(
);
expect(container).toBeEmptyDOMElement();
});
});