(item: unknown)
| 313 | } |
| 314 | |
| 315 | function testCaseSortKey(item: unknown): string { |
| 316 | const record = item as { suite?: string; test?: string }; |
| 317 | return `${record.suite ?? ''}|${record.test ?? ''}`; |
| 318 | } |
| 319 | |
| 320 | function normalizeTestCases(items: unknown[]): unknown[] { |
| 321 | const sorted = [...items].sort((a, b) => testCaseSortKey(a).localeCompare(testCaseSortKey(b))); |
no outgoing calls
no test coverage detected