Failed attempt to not open IPA.exe window

This commit is contained in:
pleb
2026-07-05 15:44:04 -07:00
parent ea1e2ad61e
commit 545d407116
5 changed files with 25 additions and 16 deletions
+5 -2
View File
@@ -319,14 +319,17 @@ state_dir = "config-state"
def test_build_bootstrap_command_native(self) -> None:
ipa = Path("C:/Games/Beat Saber/IPA.exe")
self.assertEqual(build_bootstrap_command(ipa, native=True), [str(ipa), "-n"])
self.assertEqual(
build_bootstrap_command(ipa, native=True),
[str(ipa), str(ipa.with_name("Beat Saber.exe")), "-n"],
)
def test_build_bootstrap_command_proton(self) -> None:
ipa = Path("/tmp/1.44.1/IPA.exe")
proton = Path("/tmp/proton")
self.assertEqual(
build_bootstrap_command(ipa, proton=proton, native=False),
[str(proton), "run", str(ipa), "-n"],
[str(proton), "run", str(ipa), str(ipa.with_name("Beat Saber.exe")), "-n"],
)
def test_profile_config_resolves_windows_paths(self) -> None: