From 3acb485f7cd42886273a7095f5fb93dd67624815 Mon Sep 17 00:00:00 2001 From: Tyler Slaton Date: Fri, 26 Sep 2025 08:29:31 -0700 Subject: [PATCH 1/2] test(crew-ai): add fixme for agentic gen-ui Signed-off-by: Tyler Slaton --- .../apps/dojo/e2e/tests/crewAITests/agenticGenUI.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript-sdk/apps/dojo/e2e/tests/crewAITests/agenticGenUI.spec.ts b/typescript-sdk/apps/dojo/e2e/tests/crewAITests/agenticGenUI.spec.ts index 19296c236..a92b43df5 100644 --- a/typescript-sdk/apps/dojo/e2e/tests/crewAITests/agenticGenUI.spec.ts +++ b/typescript-sdk/apps/dojo/e2e/tests/crewAITests/agenticGenUI.spec.ts @@ -1,7 +1,7 @@ import { test, expect } from "@playwright/test"; import { AgenticGenUIPage } from "../../pages/crewAIPages/AgenticUIGenPage"; -test.describe("Agent Generative UI Feature", () => { +test.fixme("[CrewAI] Agentic Gen UI", () => { // Flaky test("[CrewAI] should interact with the chat to get a planner on prompt", async ({ page, @@ -35,7 +35,7 @@ test.describe("Agent Generative UI Feature", () => { }); // Flaky - test("[CrewAI] should interact with the chat using predefined prompts and perform steps", async ({ + test.fixme("[CrewAI] should interact with the chat using predefined prompts and perform steps", async ({ page, }) => { const genUIAgent = new AgenticGenUIPage(page); From 8efc6898c3f3d121a7a97202d8c6babe8bae5a31 Mon Sep 17 00:00:00 2001 From: Tyler Slaton Date: Fri, 26 Sep 2025 08:32:26 -0700 Subject: [PATCH 2/2] test(llama-index): improve testing prompt for clarity Signed-off-by: Tyler Slaton --- .../apps/dojo/e2e/tests/llamaIndexTests/agenticGenUI.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/agenticGenUI.spec.ts b/typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/agenticGenUI.spec.ts index 67438721e..203cd2dee 100644 --- a/typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/agenticGenUI.spec.ts +++ b/typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/agenticGenUI.spec.ts @@ -17,7 +17,7 @@ test.describe("Agent Generative UI Feature", () => { await genUIAgent.sendButton.click(); await genUIAgent.assertAgentReplyVisible(/Hello/); - await genUIAgent.sendMessage("Give me a plan to make brownies"); + await genUIAgent.sendMessage("Give me a plan to make brownies using your tools"); await genUIAgent.sendButton.click(); await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 }); @@ -51,7 +51,7 @@ test.describe("Agent Generative UI Feature", () => { await genUIAgent.sendButton.click(); await genUIAgent.assertAgentReplyVisible(/Hello/); - await genUIAgent.sendMessage("Go to Mars"); + await genUIAgent.sendMessage("Go to Mars using your tools"); await genUIAgent.sendButton.click(); await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 });