1234567891011121314151617181920212223242526 |
- import from 'sentry-test/initializeOrg';
- import from 'sentry-test/reactTestingLibrary';
- import ProjectHpkpReports from 'sentry/views/settings/projectSecurityHeaders/hpkp';
- describe('ProjectHpkpReports', function ()
- = initializeOrg();
- beforeEach(function ()
- /$/`,
- method: 'GET',
- body: [],
- });
- MockApiClient.addMockResponse(
- /$/keys/`,
- method: 'GET',
- body: [],
- });
- });
- it('renders', function ()
- organization= />);
- });
- });
|