Tests: Use own websocket echo server instead of websocket.org

The public one at echo.websocket.org tends to be slow at times,
frequently causing timeouts. Ideally we would run a local websocket
server but for now we can make do with a self-hosted alternative.
This commit is contained in:
Jelle Raaijmakers 2025-03-10 12:46:14 +01:00 committed by Jelle Raaijmakers
parent 6a9e637c11
commit 46abdd1126
Notes: github-actions[bot] 2025-03-10 17:58:01 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
<script>
asyncTest((done) => {
{
const ws = new WebSocket('wss://echo.websocket.org');
const ws = new WebSocket('wss://websocket-echo.app.ladybird.org');
ws.onopen = () => {
};

View file

@ -1,7 +1,7 @@
<script src="../include.js"></script>
<script>
asyncTest((done) => {
const ws = new WebSocket('wss://echo.websocket.org');
const ws = new WebSocket('wss://websocket-echo.app.ladybird.org');
let messageCount = 0;