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.
8 lines
290 B
Python
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
|