()
| 52 | assert "HttpClient" in _labels(r) |
| 53 | |
| 54 | def test_ts_finds_methods(): |
| 55 | r = extract_js(FIXTURES / "sample.ts") |
| 56 | labels = _labels(r) |
| 57 | assert any("get" in l for l in labels) |
| 58 | assert any("post" in l for l in labels) |
| 59 | |
| 60 | def test_ts_finds_function(): |
| 61 | r = extract_js(FIXTURES / "sample.ts") |
nothing calls this directly
no test coverage detected