1
1
import {
2
2
test ,
3
3
expect ,
4
- waitForAIResponse ,
5
4
retryOnAIFailure ,
6
5
} from "../../test-isolation-helper" ;
7
6
import { PredictiveStateUpdatesPage } from "../../pages/langGraphFastAPIPages/PredictiveStateUpdatesPage" ;
@@ -23,7 +22,6 @@ test.describe("Predictive Status Updates Feature", () => {
23
22
await predictiveStateUpdates . sendMessage (
24
23
"Give me a story for a dragon called Atlantis in document"
25
24
) ;
26
- await waitForAIResponse ( page ) ;
27
25
await page . waitForTimeout ( 2000 ) ;
28
26
29
27
await predictiveStateUpdates . getPredictiveResponse ( ) ;
@@ -37,7 +35,6 @@ test.describe("Predictive Status Updates Feature", () => {
37
35
await page . waitForTimeout ( 3000 ) ;
38
36
39
37
await predictiveStateUpdates . sendMessage ( "Change dragon name to Lola" ) ;
40
- await waitForAIResponse ( page ) ;
41
38
await page . waitForTimeout ( 2000 ) ;
42
39
43
40
await predictiveStateUpdates . verifyHighlightedText ( ) ;
@@ -66,7 +63,6 @@ test.describe("Predictive Status Updates Feature", () => {
66
63
await predictiveStateUpdates . sendMessage (
67
64
"Give me a story for a dragon called Atlantis in document"
68
65
) ;
69
- await waitForAIResponse ( page ) ;
70
66
await page . waitForTimeout ( 2000 ) ;
71
67
72
68
await predictiveStateUpdates . getPredictiveResponse ( ) ;
@@ -80,7 +76,6 @@ test.describe("Predictive Status Updates Feature", () => {
80
76
await page . waitForTimeout ( 3000 ) ;
81
77
82
78
await predictiveStateUpdates . sendMessage ( "Change dragon name to Lola" ) ;
83
- await waitForAIResponse ( page ) ;
84
79
await page . waitForTimeout ( 2000 ) ;
85
80
86
81
await predictiveStateUpdates . verifyHighlightedText ( ) ;
0 commit comments