| 69 | const NOW = Date.now() / 1000; |
| 70 | |
| 71 | interface 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 | |
| 89 | interface TestEdge { |
| 90 | kind: string; |
nothing calls this directly
no outgoing calls
no test coverage detected