From 4062079d878fe8c16fca8fdf8ef5ac0661f0f831 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Tue, 19 Nov 2024 14:31:54 -0800 Subject: [PATCH] skip flaky js integration test (#1232) saw some flakiness in comparative evals stuff too, but not skipping those because seems less common if we do want to remove comparative evals: https://github.com/langchain-ai/langsmith-sdk/pull/1232/commits/c07164a846d9cd131e7bb737c68e40dfe103c27b --- js/src/tests/vercel.int.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/tests/vercel.int.test.ts b/js/src/tests/vercel.int.test.ts index b98fbb893..28a2280be 100644 --- a/js/src/tests/vercel.int.test.ts +++ b/js/src/tests/vercel.int.test.ts @@ -102,7 +102,7 @@ test("generateText with image", async () => { expect(storedRun.id).toEqual(runId); }); -test("streamText", async () => { +test.skip("streamText", async () => { const runId = uuid(); const result = await streamText({ model: openai("gpt-4o-mini"),