import {initializeOrg} from 'sentry-test/initializeOrg'; import {render, screen} from 'sentry-test/reactTestingLibrary'; import ChartPanel from 'sentry/views/insights/common/components/chartPanel'; describe('chartPanel', function () { const {organization} = initializeOrg({ organization: {features: ['insights-alerts', 'insights-initial-modules']}, }); it('should render', function () { render(
, {organization} ); expect(screen.getByText('Avg Latency')).toBeInTheDocument(); }); });