(tmp_path: Path, code: str)
| 267 | |
| 268 | |
| 269 | def _write_ts(tmp_path: Path, code: str) -> Path: |
| 270 | p = tmp_path / "sample.ts" |
| 271 | p.write_text(textwrap.dedent(code)) |
| 272 | return p |
| 273 | |
| 274 | |
| 275 | def test_js_rationale_comment_extracted(tmp_path): |
no outgoing calls
no test coverage detected