()
| 47 | # ── TypeScript ──────────────────────────────────────────────────────────────── |
| 48 | |
| 49 | def test_ts_finds_class(): |
| 50 | r = extract_js(FIXTURES / "sample.ts") |
| 51 | assert "error" not in r |
| 52 | assert "HttpClient" in _labels(r) |
| 53 | |
| 54 | def test_ts_finds_methods(): |
| 55 | r = extract_js(FIXTURES / "sample.ts") |
nothing calls this directly
no test coverage detected