mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
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:
parent
6a9e637c11
commit
46abdd1126
Notes:
github-actions[bot]
2025-03-10 17:58:01 +00:00
Author: https://github.com/gmta Commit: https://github.com/LadybirdBrowser/ladybird/commit/46abdd1126e Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3889 Reviewed-by: https://github.com/trflynn89 ✅
2 changed files with 2 additions and 2 deletions
|
@ -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 = () => {
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue