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); 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 });