Skip to content

Commit

Permalink
fix: add result logs to ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CahidArda committed Oct 7, 2024
1 parent 1678c50 commit 368d650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/nextjs/chat-to-website/ci.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ test(

const result = await collectStream(chatStream);
console.log("streamed response");
console.log(result);

const lowerCaseResult = result.toLowerCase();
expect(lowerCaseResult.includes("foo")).toBeTrue();
Expand Down
1 change: 1 addition & 0 deletions examples/nextjs/vercel-ai-sdk/ci.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ test(

const result = await collectStream(chatStream);
console.log("streamed response");
console.log(result);

const lowerCaseResult = result.toLowerCase();

Expand Down

0 comments on commit 368d650

Please sign in to comment.