Browse Source

ref(ts): Convert teamIssuesBreakdown.spec to tsx (#51977)

Evan Purkhiser 1 year ago
parent
commit
d6ed840405

+ 2 - 1
static/app/views/organizationStats/teamInsights/teamIssuesBreakdown.spec.jsx → static/app/views/organizationStats/teamInsights/teamIssuesBreakdown.spec.tsx

@@ -12,13 +12,14 @@ describe('TeamIssuesBreakdown', () => {
       body: TestStubs.TeamIssuesBreakdown(),
     });
     const statuses = ['new', 'regressed', 'unignored'];
+
     render(
       <TeamIssuesBreakdown
         organization={organization}
         projects={[project]}
         teamSlug={team.slug}
         period="8w"
-        statuses={statuses}
+        statuses={['new', 'regressed', 'unignored']}
       />
     );