mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-18 19:03:42 +08:00
0b2c431d3a
version: sunnypilot v2026.003.000 (dev)
date: 2026-09-14T15:43:39
master commit: a5f44653d7
11 lines
300 B
Python
11 lines
300 B
Python
import time
|
|
from openpilot.common.test import OpenpilotTestCase
|
|
from openpilot.selfdrive.test.helpers import with_processes
|
|
|
|
|
|
class TestRaylibUi(OpenpilotTestCase):
|
|
@with_processes(["ui"])
|
|
def test_raylib_ui(self):
|
|
"""Test initialization of the UI widgets is successful."""
|
|
time.sleep(1)
|