File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,11 +65,6 @@ export async function expectNoTracingActivity<T>(
6565 fn : ( ) => T | Promise < T > ,
6666) : Promise < Awaited < T > > {
6767 expect ( channel . hasSubscribers ) . to . equal ( false ) ;
68- expect ( channel . start . hasSubscribers ) . to . equal ( false ) ;
69- expect ( channel . end . hasSubscribers ) . to . equal ( false ) ;
70- expect ( channel . asyncStart . hasSubscribers ) . to . equal ( false ) ;
71- expect ( channel . asyncEnd . hasSubscribers ) . to . equal ( false ) ;
72- expect ( channel . error . hasSubscribers ) . to . equal ( false ) ;
7368
7469 const calls : Array < string > = [ ] ;
7570 const restore : Array < ( ) => void > = [ ] ;
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ import { isPromise } from './jsutils/isPromise.js';
2020 * @internal
2121 */
2222export interface MinimalChannel {
23- readonly hasSubscribers : boolean ;
2423 publish : ( message : unknown ) => void ;
2524 runStores : < T , ContextType extends object > (
2625 context : ContextType ,
You can’t perform that action at this time.
0 commit comments