File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
typescript-sdk/apps/dojo/e2e/tests/langgraphFastAPITests Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ test.describe("Subgraphs Travel Agent Feature", () => {
81
81
await retryOnAIFailure ( async ( ) => {
82
82
const subgraphsPage = new SubgraphsPage ( page ) ;
83
83
84
- await page . goto ( "/langgraph/feature/subgraphs" ) ;
84
+ await page . goto ( "/langgraph-fastapi /feature/subgraphs" ) ;
85
85
86
86
await subgraphsPage . openChat ( ) ;
87
87
@@ -102,6 +102,7 @@ test.describe("Subgraphs Travel Agent Feature", () => {
102
102
103
103
await subgraphsPage . verifyStaticFlightData ( ) ;
104
104
105
+ await page . waitForTimeout ( 3000 ) ;
105
106
// FEATURE TEST: Test different selection - United instead of KLM
106
107
await subgraphsPage . selectFlight ( 'United' ) ;
107
108
@@ -118,6 +119,11 @@ test.describe("Subgraphs Travel Agent Feature", () => {
118
119
console . log ( "Hotels agent indicator not found, checking content instead" ) ;
119
120
} ) ;
120
121
122
+ await subgraphsPage . verifyStaticHotelData ( ) ;
123
+
124
+ // FEATURE TEST: Test interrupt pause behavior again
125
+ await page . waitForTimeout ( 3000 ) ;
126
+
121
127
// FEATURE TEST: Test different hotel selection - Ritz-Carlton
122
128
await subgraphsPage . selectHotel ( 'Ritz-Carlton' ) ;
123
129
You can’t perform that action at this time.
0 commit comments