Skip to content

Commit 760cbf4

Browse files
committed
Annotate failing tests with fixme
1 parent fd45611 commit 760cbf4

File tree

15 files changed

+65
-65
lines changed

15 files changed

+65
-65
lines changed

typescript-sdk/apps/dojo/e2e/tests/agnoTests/toolBasedGenUIPage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ToolBaseGenUIPage } from "../../pages/agnoPages/ToolBaseGenUIPage";
44
const pageURL =
55
"/agno/feature/tool_based_generative_ui";
66

7-
test('[Agno] Haiku generation and display verification', async ({
7+
test.fixme('[Agno] Haiku generation and display verification', async ({
88
page,
99
}) => {
1010
await page.goto(pageURL);
@@ -17,7 +17,7 @@ test('[Agno] Haiku generation and display verification', async ({
1717
await genAIAgent.checkHaikuDisplay(page);
1818
});
1919

20-
test('[Agno] Haiku generation and UI consistency for two different prompts', async ({
20+
test.fixme('[Agno] Haiku generation and UI consistency for two different prompts', async ({
2121
page,
2222
}) => {
2323
await page.goto(pageURL);

typescript-sdk/apps/dojo/e2e/tests/crewAITests/predictvieStateUpdatePage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
import { PredictiveStateUpdatesPage } from "../../pages/crewAIPages/PredictiveStateUpdatesPage";
88

99
test.describe("Predictive Status Updates Feature", () => {
10-
test("[CrewAI] should interact with agent and approve asked changes", async ({
10+
test.fixme("[CrewAI] should interact with agent and approve asked changes", async ({
1111
page,
1212
}) => {
1313
await retryOnAIFailure(async () => {
@@ -44,7 +44,7 @@ test.describe("Predictive Status Updates Feature", () => {
4444
});
4545
});
4646

47-
test("[CrewAI] should interact with agent and reject asked changes", async ({
47+
test.fixme("[CrewAI] should interact with agent and reject asked changes", async ({
4848
page,
4949
}) => {
5050
await retryOnAIFailure(async () => {

typescript-sdk/apps/dojo/e2e/tests/langgraphFastAPITests/agenticGenUI.spec.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,24 @@ test.describe("Agent Generative UI Feature", () => {
1818

1919
await genUIAgent.sendMessage("Give me a plan to make brownies");
2020
await genUIAgent.sendButton.click();
21-
21+
2222
await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 });
23-
23+
2424
await genUIAgent.plan();
25-
25+
2626
await page.waitForFunction(
2727
() => {
2828
const messages = Array.from(document.querySelectorAll('.copilotKitAssistantMessage'));
2929
const lastMessage = messages[messages.length - 1];
3030
const content = lastMessage?.textContent?.trim() || '';
31-
31+
3232
return messages.length >= 3 && content.length > 0;
3333
},
3434
{ timeout: 30000 }
3535
);
3636
});
3737

38-
test("[LangGraph FastAPI] should interact with the chat using predefined prompts and perform steps", async ({
38+
test.fixme("[LangGraph FastAPI] should interact with the chat using predefined prompts and perform steps", async ({
3939
page,
4040
}) => {
4141
const genUIAgent = new AgenticGenUIPage(page);
@@ -51,16 +51,16 @@ test.describe("Agent Generative UI Feature", () => {
5151

5252
await genUIAgent.sendMessage("Go to Mars");
5353
await genUIAgent.sendButton.click();
54-
54+
5555
await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 });
5656
await genUIAgent.plan();
57-
57+
5858
await page.waitForFunction(
5959
() => {
6060
const messages = Array.from(document.querySelectorAll('.copilotKitAssistantMessage'));
6161
const lastMessage = messages[messages.length - 1];
6262
const content = lastMessage?.textContent?.trim() || '';
63-
63+
6464
return messages.length >= 3 && content.length > 0;
6565
},
6666
{ timeout: 30000 }

typescript-sdk/apps/dojo/e2e/tests/langgraphFastAPITests/predictvieStateUpdatePage.spec.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
import { PredictiveStateUpdatesPage } from "../../pages/langGraphFastAPIPages/PredictiveStateUpdatesPage";
88

99
test.describe("Predictive Status Updates Feature", () => {
10-
test("[LangGraph FastAPI] should interact with agent and approve asked changes", async ({
10+
test.fixme("[LangGraph FastAPI] should interact with agent and approve asked changes", async ({
1111
page,
1212
}) => {
1313
await retryOnAIFailure(async () => {
@@ -25,7 +25,7 @@ test.describe("Predictive Status Updates Feature", () => {
2525
);
2626
await waitForAIResponse(page);
2727
await page.waitForTimeout(2000);
28-
28+
2929
await predictiveStateUpdates.getPredictiveResponse();
3030
await predictiveStateUpdates.getUserApproval();
3131
await predictiveStateUpdates.confirmedChangesResponse.isVisible();
@@ -39,7 +39,7 @@ test.describe("Predictive Status Updates Feature", () => {
3939
await predictiveStateUpdates.sendMessage("Change dragon name to Lola");
4040
await waitForAIResponse(page);
4141
await page.waitForTimeout(2000);
42-
42+
4343
await predictiveStateUpdates.verifyHighlightedText();
4444
await predictiveStateUpdates.getUserApproval();
4545
await predictiveStateUpdates.confirmedChangesResponse.isVisible();
@@ -50,7 +50,7 @@ test.describe("Predictive Status Updates Feature", () => {
5050
});
5151
});
5252

53-
test("[LangGraph FastAPI] should interact with agent and reject asked changes", async ({
53+
test.fixme("[LangGraph FastAPI] should interact with agent and reject asked changes", async ({
5454
page,
5555
}) => {
5656
await retryOnAIFailure(async () => {
@@ -68,7 +68,7 @@ test.describe("Predictive Status Updates Feature", () => {
6868
);
6969
await waitForAIResponse(page);
7070
await page.waitForTimeout(2000);
71-
71+
7272
await predictiveStateUpdates.getPredictiveResponse();
7373
await predictiveStateUpdates.getUserApproval();
7474
await predictiveStateUpdates.confirmedChangesResponse.isVisible();
@@ -82,7 +82,7 @@ test.describe("Predictive Status Updates Feature", () => {
8282
await predictiveStateUpdates.sendMessage("Change dragon name to Lola");
8383
await waitForAIResponse(page);
8484
await page.waitForTimeout(2000);
85-
85+
8686
await predictiveStateUpdates.verifyHighlightedText();
8787
await predictiveStateUpdates.getUserRejection();
8888
await predictiveStateUpdates.rejectedChangesResponse.isVisible();

typescript-sdk/apps/dojo/e2e/tests/langgraphFastAPITests/sharedStatePage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test.describe("Shared State Feature", () => {
2121
);
2222
});
2323

24-
test("[LangGraph FastAPI] should share state between UI and chat", async ({
24+
test.fixme("[LangGraph FastAPI] should share state between UI and chat", async ({
2525
page,
2626
}) => {
2727
const sharedStateAgent = new SharedStatePage(page);
@@ -34,7 +34,7 @@ test.describe("Shared State Feature", () => {
3434

3535
// Add new ingredient via UI
3636
await sharedStateAgent.addIngredient.click();
37-
37+
3838
// Fill in the new ingredient details
3939
const newIngredientCard = page.locator('.ingredient-card').last();
4040
await newIngredientCard.locator('.ingredient-name-input').fill('Potatoes');

typescript-sdk/apps/dojo/e2e/tests/langgraphFastAPITests/toolBasedGenUIPage.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ToolBaseGenUIPage } from "../../pages/langGraphFastAPIPages/ToolBaseGen
44
const pageURL =
55
"/langgraph-fastapi/feature/tool_based_generative_ui";
66

7-
test('[LangGraph FastAPI] Haiku generation and display verification', async ({
7+
test.fixme('[LangGraph FastAPI] Haiku generation and display verification', async ({
88
page,
99
}) => {
1010
await page.goto(pageURL);

typescript-sdk/apps/dojo/e2e/tests/langgraphTests/predictvieStateUpdatePage.spec.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
import { PredictiveStateUpdatesPage } from "../../pages/langGraphPages/PredictiveStateUpdatesPage";
88

99
test.describe("Predictive Status Updates Feature", () => {
10-
test("[LangGraph] should interact with agent and approve asked changes", async ({
10+
test.fixme("[LangGraph] should interact with agent and approve asked changes", async ({
1111
page,
1212
}) => {
1313
await retryOnAIFailure(async () => {
@@ -25,7 +25,7 @@ test.describe("Predictive Status Updates Feature", () => {
2525
);
2626
await waitForAIResponse(page);
2727
await page.waitForTimeout(2000);
28-
28+
2929
await predictiveStateUpdates.getPredictiveResponse();
3030
await predictiveStateUpdates.getUserApproval();
3131
await predictiveStateUpdates.confirmedChangesResponse.isVisible();
@@ -39,7 +39,7 @@ test.describe("Predictive Status Updates Feature", () => {
3939
await predictiveStateUpdates.sendMessage("Change dragon name to Lola");
4040
await waitForAIResponse(page);
4141
await page.waitForTimeout(2000);
42-
42+
4343
await predictiveStateUpdates.verifyHighlightedText();
4444
await predictiveStateUpdates.getUserApproval();
4545
await predictiveStateUpdates.confirmedChangesResponse.isVisible();
@@ -50,7 +50,7 @@ test.describe("Predictive Status Updates Feature", () => {
5050
});
5151
});
5252

53-
test("[LangGraph] should interact with agent and reject asked changes", async ({
53+
test.fixme("[LangGraph] should interact with agent and reject asked changes", async ({
5454
page,
5555
}) => {
5656
await retryOnAIFailure(async () => {
@@ -68,7 +68,7 @@ test.describe("Predictive Status Updates Feature", () => {
6868
);
6969
await waitForAIResponse(page);
7070
await page.waitForTimeout(2000);
71-
71+
7272
await predictiveStateUpdates.getPredictiveResponse();
7373
await predictiveStateUpdates.getUserApproval();
7474
await predictiveStateUpdates.confirmedChangesResponse.isVisible();
@@ -82,7 +82,7 @@ test.describe("Predictive Status Updates Feature", () => {
8282
await predictiveStateUpdates.sendMessage("Change dragon name to Lola");
8383
await waitForAIResponse(page);
8484
await page.waitForTimeout(2000);
85-
85+
8686
await predictiveStateUpdates.verifyHighlightedText();
8787
await predictiveStateUpdates.getUserRejection();
8888
await predictiveStateUpdates.rejectedChangesResponse.isVisible();

typescript-sdk/apps/dojo/e2e/tests/langgraphTests/toolBasedGenUIPage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ToolBaseGenUIPage } from "../../pages/langGraphPages/ToolBaseGenUIPage"
44
const pageURL =
55
"/langgraph/feature/tool_based_generative_ui";
66

7-
test('[LangGraph] Haiku generation and display verification', async ({
7+
test.fixme('[LangGraph] Haiku generation and display verification', async ({
88
page,
99
}) => {
1010
await page.goto(pageURL);
@@ -17,7 +17,7 @@ test('[LangGraph] Haiku generation and display verification', async ({
1717
await genAIAgent.checkHaikuDisplay(page);
1818
});
1919

20-
test('[LangGraph] Haiku generation and UI consistency for two different prompts', async ({
20+
test.fixme('[LangGraph] Haiku generation and UI consistency for two different prompts', async ({
2121
page,
2222
}) => {
2323
await page.goto(pageURL);

typescript-sdk/apps/dojo/e2e/tests/llamaIndexTests/agenticGenUI.spec.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, expect } from "@playwright/test";
22
import { AgenticGenUIPage } from "../../pages/llamaIndexPages/AgenticUIGenPage";
33

44
test.describe("Agent Generative UI Feature", () => {
5-
test("[LlamaIndex] should interact with the chat to get a planner on prompt", async ({
5+
test.fixme("[LlamaIndex] should interact with the chat to get a planner on prompt", async ({
66
page,
77
}) => {
88
const genUIAgent = new AgenticGenUIPage(page);
@@ -18,24 +18,24 @@ test.describe("Agent Generative UI Feature", () => {
1818

1919
await genUIAgent.sendMessage("Give me a plan to make brownies");
2020
await genUIAgent.sendButton.click();
21-
21+
2222
await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 });
23-
23+
2424
await genUIAgent.plan();
25-
25+
2626
await page.waitForFunction(
2727
() => {
2828
const messages = Array.from(document.querySelectorAll('.copilotKitAssistantMessage'));
2929
const lastMessage = messages[messages.length - 1];
3030
const content = lastMessage?.textContent?.trim() || '';
31-
31+
3232
return messages.length >= 3 && content.length > 0;
3333
},
3434
{ timeout: 30000 }
3535
);
3636
});
3737

38-
test("[LlamaIndex] should interact with the chat using predefined prompts and perform steps", async ({
38+
test.fixme("[LlamaIndex] should interact with the chat using predefined prompts and perform steps", async ({
3939
page,
4040
}) => {
4141
const genUIAgent = new AgenticGenUIPage(page);
@@ -51,17 +51,17 @@ test.describe("Agent Generative UI Feature", () => {
5151

5252
await genUIAgent.sendMessage("Go to Mars");
5353
await genUIAgent.sendButton.click();
54-
54+
5555
await expect(genUIAgent.agentPlannerContainer).toBeVisible({ timeout: 15000 });
56-
56+
5757
await genUIAgent.plan();
58-
58+
5959
await page.waitForFunction(
6060
() => {
6161
const messages = Array.from(document.querySelectorAll('.copilotKitAssistantMessage'));
6262
const lastMessage = messages[messages.length - 1];
6363
const content = lastMessage?.textContent?.trim() || '';
64-
64+
6565
return messages.length >= 3 && content.length > 0;
6666
},
6767
{ timeout: 30000 }

typescript-sdk/apps/dojo/e2e/tests/mastraAgentLocalTests/toolBasedGenUIPage.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ToolBaseGenUIPage } from "../../pages/mastraAgentLocalPages/ToolBaseGen
44
const pageURL =
55
"/mastra-agent-local/feature/tool_based_generative_ui";
66

7-
test('[Mastra Agent Local] Haiku generation and display verification', async ({
7+
test.fixme('[Mastra Agent Local] Haiku generation and display verification', async ({
88
page,
99
}) => {
1010
await page.goto(pageURL);
@@ -17,7 +17,7 @@ test('[Mastra Agent Local] Haiku generation and display verification', async ({
1717
await genAIAgent.checkHaikuDisplay(page);
1818
});
1919

20-
test('[Mastra Agent Local] Haiku generation and UI consistency for two different prompts', async ({
20+
test.fixme('[Mastra Agent Local] Haiku generation and UI consistency for two different prompts', async ({
2121
page,
2222
}) => {
2323
await page.goto(pageURL);

0 commit comments

Comments
 (0)