Spaces:
Running on Zero
Running on Zero
File size: 406 Bytes
15811ca 3ea399a 15811ca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """Backend tests — most are smoke / structural since the real work is GPU."""
import backend
def test_backend_class_exists():
assert hasattr(backend, "ComfyUILibraryBackend")
def test_progress_event_dataclasses_exist():
assert hasattr(backend, "DownloadEvent")
assert hasattr(backend, "ProgressEvent")
assert hasattr(backend, "OutputEvent")
assert hasattr(backend, "ErrorEvent")
|