Open Lykhant opened 7 months ago
To test your code with websockets you'd have to run the server.
Have you tried reshaping your test as follows?
test('WebSocket / works', (done) => {
app.listen(8080, () => {
// Now the server is ready and your test can run
// Finish the test
done()
})
})
Same result, the test times out.
import { test, expect } from "bun:test";
import { treaty } from "@elysiajs/eden";
import { app } from "../src/index";
const api = treaty(app);
test("Websocket with instance", async (done) => {
app.listen(8080, async () => {
const chat = api.chat.subscribe();
await new Promise<void>((resolve) => {
chat.addEventListener("open", () => resolve());
});
let messages: string[] = [];
chat.subscribe((message) => {
messages.push(message.data);
});
chat.send("hello from client");
await new Promise<void>((resolve) => {
chat.addEventListener("message", () => resolve(), { once: true });
});
console.log("test");
expect(messages).toEqual(["hello from client"]);
done();
});
});
bun test v1.1.4 (fbe2fe0c)
test/index.test.ts:
error: Test "Websocket with instance" timed out after 5000ms
✗ Websocket with instance [5001.24ms]
0 pass
1 fail
Ran 1 tests across 1 files. [5.07s]
https://github.com/elysiajs/eden/blob/main/src/treaty2/index.ts#L458
http://e.ly
should probably be something like app.server.url.origin
Too lazy to fix my pending PR to not be on main
of my fork right now so I leave it you all
Environment
Platform
Linux, Nobara 39 (Fedora derivative)
Tool versions
Bun version:
1.1.4
Elysia version:1.0.12
Eden version:1.0.14
How to reproduce
/src/index.ts
/test/index.test.ts
Running
bun test
in this state causes the following:However, when changing line 5 to
const api = treaty<typeof app>("localhost:3000")
and start up the server withbun dev
before running the test, the test passes: