Failed attempt to not open IPA.exe window
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user