Skip to content

Commit 7c336c3

Browse files
committed
chore: fix subgraphs e2e test wrong route
1 parent e4f117e commit 7c336c3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ test.describe("Subgraphs Travel Agent Feature", () => {
8181
await retryOnAIFailure(async () => {
8282
const subgraphsPage = new SubgraphsPage(page);
8383

84-
await page.goto("/langgraph/feature/subgraphs");
84+
await page.goto("/langgraph-fastapi/feature/subgraphs");
8585

8686
await subgraphsPage.openChat();
8787

@@ -102,6 +102,7 @@ test.describe("Subgraphs Travel Agent Feature", () => {
102102

103103
await subgraphsPage.verifyStaticFlightData();
104104

105+
await page.waitForTimeout(3000);
105106
// FEATURE TEST: Test different selection - United instead of KLM
106107
await subgraphsPage.selectFlight('United');
107108

@@ -118,6 +119,11 @@ test.describe("Subgraphs Travel Agent Feature", () => {
118119
console.log("Hotels agent indicator not found, checking content instead");
119120
});
120121

122+
await subgraphsPage.verifyStaticHotelData();
123+
124+
// FEATURE TEST: Test interrupt pause behavior again
125+
await page.waitForTimeout(3000);
126+
121127
// FEATURE TEST: Test different hotel selection - Ritz-Carlton
122128
await subgraphsPage.selectHotel('Ritz-Carlton');
123129

0 commit comments

Comments
 (0)