dream: websockets — upgrade + send/receive/close/broadcast + 16 tests
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 37s

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-07 14:49:15 +00:00
parent fbc0c03f3a
commit b67709dab5
4 changed files with 147 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ MODULES=(
"lib/dream/session.sx"
"lib/dream/flash.sx"
"lib/dream/form.sx"
"lib/dream/websocket.sx"
)
# Suites: NAME RUNNER-FN PATH
@@ -38,6 +39,7 @@ SUITES=(
"session dream-ss-tests-run! lib/dream/tests/session.sx"
"flash dream-fl-tests-run! lib/dream/tests/flash.sx"
"form dream-fo-tests-run! lib/dream/tests/form.sx"
"websocket dream-ws-tests-run! lib/dream/tests/websocket.sx"
)
TMPFILE=$(mktemp); trap "rm -f $TMPFILE" EXIT