This commit is contained in:
2026-09-01 10:45:21 -04:00
commit ac32649783
51 changed files with 4837 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from test_driver.machine import Machine
machine: Machine = None # ty: ignore[invalid-assignment]
# typing-end
machine.start()
machine.wait_for_x()
machine.succeed("affinity-v3 >&2 &")
machine.wait_for_window(r"^Affinity$")
machine.screenshot("screenshot")