diff --git a/js/src/utils/prompts/tests/anthropic.int.test.ts b/js/src/utils/prompts/tests/anthropic.int.test.ts index a5524677b..d057a561c 100644 --- a/js/src/utils/prompts/tests/anthropic.int.test.ts +++ b/js/src/utils/prompts/tests/anthropic.int.test.ts @@ -21,5 +21,5 @@ test("basic traceable implementation", async () => { stream: false, }); - console.log(anthropicResponse); + expect(anthropicResponse.content).toBeDefined(); }); diff --git a/js/src/utils/prompts/tests/openai.int.test.ts b/js/src/utils/prompts/tests/openai.int.test.ts index 890e2b33b..48b12f715 100644 --- a/js/src/utils/prompts/tests/openai.int.test.ts +++ b/js/src/utils/prompts/tests/openai.int.test.ts @@ -18,5 +18,5 @@ test("basic traceable implementation", async () => { messages, }); - console.log(openAIResponse); + expect(openAIResponse.choices.length).toBeGreaterThan(0); });