Onionr/src/runtests/uicheck.py

10 lines
332 B
Python

from onionrutils import localcommand
def check_ui(test_manager):
endpoints = ['/']
for point in endpoints:
result = localcommand.local_command(point)
if not result: raise ValueError
result = result.lower()
if 'script' not in result:
raise ValueError(f'uicheck failed on {point}')