MCPcopy Index your code
hub / github.com/codeaashu/claude-code / pass

Function pass

scripts/test-services.ts:13–16  ·  view source on GitHub ↗
(name: string, detail?: string)

Source from the content-addressed store, hash-verified

11const results: TestResult[] = []
12
13function pass(name: string, detail?: string) {
14 results.push({ name, status: 'pass', detail })
15 console.log(` ✅ ${name}${detail ? ` — ${detail}` : ''}`)
16}
17
18function fail(name: string, detail: string) {
19 results.push({ name, status: 'fail', detail })

Callers 8

testGrowthBookFunction · 0.85
testAnalyticsSinkFunction · 0.85
testPolicyLimitsFunction · 0.85
testBootstrapDataFunction · 0.85
testSessionMemoryUtilsFunction · 0.85
testCostTrackerFunction · 0.85
testInitFunction · 0.85

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected