mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-05 13:25:40 +08:00
10 lines
229 B
Python
10 lines
229 B
Python
import time
|
|
from openpilot.selfdrive.test.helpers import with_processes
|
|
|
|
|
|
class TestRaylibUi:
|
|
@with_processes(["ui"])
|
|
def test_raylib_ui(self):
|
|
"""Test initialization of the UI widgets is successful."""
|
|
time.sleep(1)
|