(project: &Path)
| 74 | } |
| 75 | |
| 76 | fn project_data_dir(project: &Path) -> PathBuf { |
| 77 | resolve_layout_for_current_profile(project) |
| 78 | .unwrap_or_else(|err| panic!("failed to resolve test project storage layout: {err}")) |
| 79 | .data_root |
| 80 | } |
| 81 | |
| 82 | /// Initialises a git repo with one indexed file on `main` and returns the |
| 83 | /// indexed project root. Mirrors the watcher's precondition: a project already |
no test coverage detected