MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / isNormalizedTestCase

Function isNormalizedTestCase

src/snapshot-tests/json-normalize.ts:309–313  ·  view source on GitHub ↗
(
  value: unknown,
)

Source from the content-addressed store, hash-verified

307}
308
309function isNormalizedTestCase(
310 value: unknown,
311): value is { status?: unknown; suite?: string; test?: string } {
312 return isRecord(value) && typeof value.status === 'string';
313}
314
315function testCaseSortKey(item: unknown): string {
316 const record = item as { suite?: string; test?: string };

Callers 1

normalizeTestCasesFunction · 0.85

Calls 1

isRecordFunction · 0.70

Tested by

no test coverage detected