Browse Source

ref(ts): Convert projectApdexScoreCard.spec to tsx (#52011)

Evan Purkhiser 1 year ago
parent
commit
b9dd580214

+ 4 - 1
static/app/views/projectDetail/projectScoreCards/projectApdexScoreCard.spec.jsx → static/app/views/projectDetail/projectScoreCards/projectApdexScoreCard.spec.tsx

@@ -3,14 +3,17 @@ import {render} from 'sentry-test/reactTestingLibrary';
 import ProjectApdexScoreCard from 'sentry/views/projectDetail/projectScoreCards/projectApdexScoreCard';
 
 describe('ProjectDetail > ProjectApdex', function () {
-  let endpointMock;
+  let endpointMock: jest.Mock;
   const organization = TestStubs.Organization();
 
   const selection = {
     projects: [1],
     environments: [],
     datetime: {
+      start: null,
+      end: null,
       period: '14d',
+      utc: null,
     },
   };