Test environment for install_frontend_packages tests.
| 67 | |
| 68 | @dataclass |
| 69 | class InstallPackagesEnv: |
| 70 | """Test environment for install_frontend_packages tests.""" |
| 71 | |
| 72 | tmp_path: Path |
| 73 | web_dir: Path |
| 74 | root_lock: Path |
| 75 | web_lock: Path |
| 76 | root_package_json: Path |
| 77 | web_package_json: Path |
| 78 | config: Config |
| 79 | patch_pm: Callable[[list[str], Callable], None] |
| 80 | install: _InstallFn |
| 81 | |
| 82 | |
| 83 | def _stub_framework_packages(monkeypatch: pytest.MonkeyPatch) -> None: |
no outgoing calls