| 8 | const TESTS_DIR = path.join(import.meta.dir, "tests") |
| 9 | |
| 10 | interface TestFile { |
| 11 | name: string |
| 12 | path: string |
| 13 | type: "ts" | "py" |
| 14 | } |
| 15 | |
| 16 | function getTests(): TestFile[] { |
| 17 | const tests: TestFile[] = [] |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…