MCPcopy
hub / github.com/tirth8205/code-review-graph / TestNode

Interface TestNode

code-review-graph-vscode/test/sqlite.test.ts:71–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69const NOW = Date.now() / 1000;
70
71interface TestNode {
72 kind: string;
73 name: string;
74 qualified_name: string;
75 file_path: string;
76 line_start: number;
77 line_end: number;
78 language: string;
79 parent_name: string | null;
80 params: string | null;
81 return_type: string | null;
82 modifiers: string | null;
83 is_test: number;
84 file_hash: string;
85 extra: string;
86 updated_at: number;
87}
88
89interface TestEdge {
90 kind: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected