MCPcopy
hub / github.com/jackwener/OpenCLI / SuiteResult

Interface SuiteResult

autoresearch/eval-all.ts:20–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18const RESULTS_DIR = join(__dirname, 'results');
19
20interface SuiteResult {
21 name: string;
22 passed: number;
23 total: number;
24 failures: string[];
25 duration: number;
26}
27
28function runSuite(name: string, script: string): SuiteResult {
29 const start = Date.now();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected