We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a31b5b commit 0321035Copy full SHA for 0321035
1 file changed
nodejs/test/e2e/session.test.ts
@@ -384,9 +384,9 @@ describe("Send Blocking Behavior", async () => {
384
expect(events).toContain("assistant.message");
385
});
386
387
- // Skip in CI - this test validates client-side timeout behavior, not LLM responses.
388
- // The test intentionally times out before receiving a response, so there's no snapshot to replay.
389
- it.skipIf(process.env.CI === "true")("sendAndWait throws on timeout", async () => {
+ // This test validates client-side timeout behavior.
+ // The snapshot has no assistant response since we expect timeout before completion.
+ it("sendAndWait throws on timeout", async () => {
390
const session = await client.createSession();
391
392
// Use a slow command to ensure timeout triggers before completion
0 commit comments