File tree 2 files changed +6
-4
lines changed
cypress/fixtures/templates
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -123,10 +123,11 @@ function App() {
123
123
} ,
124
124
loop : {
125
125
message : ( params : Params ) => {
126
- // sends the message half a second later to facilitate testing of new message prompt
126
+ // sends the message 5 seconds later to facilitate testing of new message prompt
127
+ // it is set to 5 seconds because running on hosted CI may be slow sometimes
127
128
setTimeout ( async ( ) => {
128
129
await params . injectMessage ( "You have reached the end of the conversation!" ) ;
129
- } , 500 )
130
+ } , 5000 )
130
131
} ,
131
132
path : "loop"
132
133
} ,
Original file line number Diff line number Diff line change @@ -123,10 +123,11 @@ function App() {
123
123
} ,
124
124
loop : {
125
125
message : ( params : Params ) => {
126
- // sends the message a second later to facilitate testing of new message prompt
126
+ // sends the message 5 seconds later to facilitate testing of new message prompt
127
+ // it is set to 5 seconds because running on hosted CI may be slow sometimes
127
128
setTimeout ( async ( ) => {
128
129
await params . injectMessage ( "You have reached the end of the conversation!" ) ;
129
- } , 1000 )
130
+ } , 5000 )
130
131
} ,
131
132
path : "loop"
132
133
} ,
You can’t perform that action at this time.
0 commit comments