MCPcopy Index your code
hub / github.com/BlockRunAI/ClawRouter / assert

Function assert

test/proxy-reuse.ts:22–30  ·  view source on GitHub ↗
(condition: boolean, msg: string)

Source from the content-addressed store, hash-verified

20let failed = 0;
21
22function assert(condition: boolean, msg: string) {
23 if (condition) {
24 console.log(` ✓ ${msg}`);
25 passed++;
26 } else {
27 console.error(` ✗ FAIL: ${msg}`);
28 failed++;
29 }
30}
31
32// ─── Part 1: getProxyPort() ───
33

Callers 1

proxy-reuse.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected