(rel: string, body: string)
| 23 | afterEach(() => { fs.rmSync(dir, { recursive: true, force: true }); }); |
| 24 | |
| 25 | const write = (rel: string, body: string) => { |
| 26 | const p = path.join(dir, rel); |
| 27 | fs.mkdirSync(path.dirname(p), { recursive: true }); |
| 28 | fs.writeFileSync(p, body); |
| 29 | }; |
| 30 | |
| 31 | type Row = { name: string; kind: string; decorators: string | null; docstring: string | null; signature: string | null }; |
| 32 | const load = async () => { |
no test coverage detected