Skip to content

Commit f402547

Browse files
committed
re-enable all tests
1 parent 3085e71 commit f402547

File tree

13 files changed

+22
-22
lines changed

13 files changed

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

20-
test.fixme('[Agno] Haiku generation and UI consistency for two different prompts', async ({
20+
test('[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/agenticChatPage.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test("[CrewAI] Agentic Chat sends and receives a message", async ({
2626
});
2727
});
2828

29-
test.fixme("[CrewAI] Agentic Chat changes background on message and reset", async ({
29+
test("[CrewAI] Agentic Chat changes background on message and reset", async ({
3030
page,
3131
}) => {
3232
await retryOnAIFailure(async () => {

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

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

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

36-
test.fixme("[CrewAI] should interact with the chat using predefined prompts and perform steps", async ({
36+
test("[CrewAI] should interact with the chat using predefined prompts and perform steps", async ({
3737
page,
3838
}) => {
3939
const genUIAgent = new AgenticGenUIPage(page);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ test.describe("Agent Generative UI Feature", () => {
3535
);
3636
});
3737

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

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

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

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

typescript-sdk/apps/dojo/e2e/tests/langgraphFastAPITests/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/langGraphFastAPIPages/ToolBaseGen
44
const pageURL =
55
"/langgraph-fastapi/feature/tool_based_generative_ui";
66

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

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

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

20-
test.fixme('[LangGraph] Haiku generation and UI consistency for two different prompts', async ({
20+
test('[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: 2 additions & 2 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.fixme("[LlamaIndex] should interact with the chat to get a planner on prompt", async ({
5+
test("[LlamaIndex] should interact with the chat to get a planner on prompt", async ({
66
page,
77
}) => {
88
const genUIAgent = new AgenticGenUIPage(page);
@@ -35,7 +35,7 @@ test.describe("Agent Generative UI Feature", () => {
3535
);
3636
});
3737

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

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

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

typescript-sdk/apps/dojo/e2e/tests/mastraTests/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/mastraPages/ToolBaseGenUIPage";
44
const pageURL =
55
"/mastra/feature/tool_based_generative_ui";
66

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

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

0 commit comments

Comments
 (0)