f8e13417f2
date: 2026-08-15T14:20:10 master commit: d48cfa730bf21593b684efeaf3fd8940695e1dea
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)
|