Skip to content

Commit c3d7a65

Browse files
committed
chore: enable all langgraph tests
1 parent a230c5f commit c3d7a65

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

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/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/langGraphFastAPIPages/PredictiveStateUpdatesPage";
88

99
test.describe("Predictive Status Updates Feature", () => {
10-
test.fixme("[LangGraph FastAPI] should interact with agent and approve asked changes", async ({
10+
test("[LangGraph FastAPI] should interact with agent and approve asked changes", async ({
1111
page,
1212
}) => {
1313
await retryOnAIFailure(async () => {
@@ -50,7 +50,7 @@ test.describe("Predictive Status Updates Feature", () => {
5050
});
5151
});
5252

53-
test.fixme("[LangGraph FastAPI] should interact with agent and reject asked changes", async ({
53+
test("[LangGraph FastAPI] should interact with agent and reject asked changes", async ({
5454
page,
5555
}) => {
5656
await retryOnAIFailure(async () => {

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/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/langGraphPages/PredictiveStateUpdatesPage";
88

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

53-
test.fixme("[LangGraph] should interact with agent and reject asked changes", async ({
53+
test("[LangGraph] should interact with agent and reject asked changes", async ({
5454
page,
5555
}) => {
5656
await retryOnAIFailure(async () => {

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

0 commit comments

Comments
 (0)