import {mountWithTheme} from 'sentry-test/enzyme'; import ProjectExpectCtReports from 'sentry/views/settings/projectSecurityHeaders/expectCt'; describe('ProjectExpectCtReports', function () { const org = TestStubs.Organization(); const project = TestStubs.Project(); const url = `/projects/${org.slug}/${project.slug}/expect-ct/`; beforeEach(function () { MockApiClient.clearMockResponses(); MockApiClient.addMockResponse({ url: `/projects/${org.slug}/${project.slug}/keys/`, method: 'GET', body: [], }); }); it('renders', function () { const wrapper = mountWithTheme( ); expect(wrapper).toSnapshot(); }); });