123456789101112131415161718192021222324252627282930 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render} from 'sentry-test/reactTestingLibrary';
- import ProjectExpectCtReports from 'sentry/views/settings/projectSecurityHeaders/expectCt';
- describe('ProjectExpectCtReports', function () {
- const {organization, project, routerProps} = initializeOrg();
- const url = `/projects/${organization.slug}/${project.slug}/expect-ct/`;
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: `/projects/${organization.slug}/${project.slug}/keys/`,
- method: 'GET',
- body: [],
- });
- });
- it('renders', function () {
- const {container} = render(
- <ProjectExpectCtReports
- {...routerProps}
- location={TestStubs.location({pathname: url})}
- organization={organization}
- />
- );
- expect(container).toSnapshot();
- });
- });
|