@@ -103,6 +103,7 @@ describe("RunSubscription", () => {
103
103
104
104
const subscription = new RunSubscription ( {
105
105
runShapeStream : createTestShapeStream ( shapes ) ,
106
+ stopRunShapeStream : ( ) => { } ,
106
107
streamFactory : new TestStreamSubscriptionFactory ( ) ,
107
108
closeOnComplete : true ,
108
109
abortController : new AbortController ( ) ,
@@ -143,6 +144,7 @@ describe("RunSubscription", () => {
143
144
144
145
const subscription = new RunSubscription ( {
145
146
runShapeStream : createTestShapeStream ( shapes ) ,
147
+ stopRunShapeStream : ( ) => { } ,
146
148
streamFactory : new TestStreamSubscriptionFactory ( ) ,
147
149
closeOnComplete : true ,
148
150
abortController : new AbortController ( ) ,
@@ -196,6 +198,7 @@ describe("RunSubscription", () => {
196
198
197
199
const subscription = new RunSubscription ( {
198
200
runShapeStream : createDelayedTestShapeStream ( shapes ) ,
201
+ stopRunShapeStream : ( ) => { } ,
199
202
streamFactory : new TestStreamSubscriptionFactory ( ) ,
200
203
closeOnComplete : false ,
201
204
abortController : new AbortController ( ) ,
@@ -249,6 +252,7 @@ describe("RunSubscription", () => {
249
252
250
253
const subscription = new RunSubscription ( {
251
254
runShapeStream : createTestShapeStream ( shapes ) ,
255
+ stopRunShapeStream : ( ) => { } ,
252
256
streamFactory,
253
257
abortController : new AbortController ( ) ,
254
258
} ) ;
@@ -339,6 +343,7 @@ describe("RunSubscription", () => {
339
343
340
344
const subscription = new RunSubscription ( {
341
345
runShapeStream : createTestShapeStream ( shapes ) ,
346
+ stopRunShapeStream : ( ) => { } ,
342
347
streamFactory,
343
348
abortController : new AbortController ( ) ,
344
349
} ) ;
@@ -419,6 +424,7 @@ describe("RunSubscription", () => {
419
424
420
425
const subscription = new RunSubscription ( {
421
426
runShapeStream : createTestShapeStream ( shapes ) ,
427
+ stopRunShapeStream : ( ) => { } ,
422
428
streamFactory,
423
429
abortController : new AbortController ( ) ,
424
430
} ) ;
0 commit comments