(groupTypeIndex: number | null | undefined)
| 182 | |
| 183 | describe('summarizeInsightFilters()', () => { |
| 184 | const aggregationLabel = (groupTypeIndex: number | null | undefined): Noun => |
| 185 | groupTypeIndex != undefined |
| 186 | ? { |
| 187 | singular: 'organization', |
| 188 | plural: 'organizations', |
| 189 | } |
| 190 | : { singular: 'user', plural: 'users' } |
| 191 | const cohortIdsMapped: Partial<Record<CohortType['id'], CohortType>> = { |
| 192 | 1: { |
| 193 | id: 1, |
no outgoing calls
no test coverage detected
searching dependent graphs…