soulsync/tests/test_websocket_client_transport.py
Broque Thomas d055e53610 Repoint websocket transport test to core.js after split
The websocket init block moved from script.js into core.js in the
module split (PR #352). Test was still hardcoded to the old path.
2026-04-22 11:30:39 -07:00

8 lines
290 B
Python

from pathlib import Path
def test_websocket_client_prefers_polling_before_websocket():
script_path = Path(__file__).resolve().parents[1] / "webui" / "static" / "core.js"
script = script_path.read_text(encoding="utf-8")
assert "transports: ['polling', 'websocket']" in script