We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 019cc31 commit d033353Copy full SHA for d033353
1 file changed
nodejs/test/e2e/session.test.ts
@@ -22,7 +22,7 @@ describe("Sessions", async () => {
22
await expect(() => session.getMessages()).rejects.toThrow(/Session not found/);
23
});
24
25
- it("should list sessions with context field", async () => {
+ it("should list sessions with context field", { timeout: 60000 }, async () => {
26
// Create a session — just creating it is enough for it to appear in listSessions
27
const session = await client.createSession();
28
expect(session.sessionId).toMatch(/^[a-f0-9-]+$/);
0 commit comments