@@ -50,7 +50,7 @@ describe('Hoverifier', () => {
5050
5151 const positionJumps = new Subject < PositionJump > ( )
5252
53- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
53+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
5454
5555 const subscriptions = new Subscription ( )
5656
@@ -112,7 +112,7 @@ describe('Hoverifier', () => {
112112
113113 const positionJumps = new Subject < PositionJump > ( )
114114
115- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
115+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
116116
117117 const subscriptions = new Subscription ( )
118118
@@ -201,7 +201,7 @@ describe('Hoverifier', () => {
201201
202202 const positionJumps = new Subject < PositionJump > ( )
203203
204- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
204+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
205205
206206 const subscriptions = new Subscription ( )
207207
@@ -282,7 +282,7 @@ describe('Hoverifier', () => {
282282
283283 const positionJumps = new Subject < PositionJump > ( )
284284
285- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
285+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
286286
287287 const subscriptions = new Subscription ( )
288288
@@ -346,7 +346,9 @@ describe('Hoverifier', () => {
346346
347347 const positionJumps = new Subject < PositionJump > ( )
348348
349- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
349+ const positionEvents = of ( codeView . codeView ) . pipe (
350+ findPositionsFromEvents ( { domFunctions : codeView } )
351+ )
350352
351353 const subscriptions = new Subscription ( )
352354
@@ -416,7 +418,9 @@ describe('Hoverifier', () => {
416418
417419 const positionJumps = new Subject < PositionJump > ( )
418420
419- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
421+ const positionEvents = of ( codeView . codeView ) . pipe (
422+ findPositionsFromEvents ( { domFunctions : codeView } )
423+ )
420424
421425 const subscriptions = new Subscription ( )
422426
@@ -495,7 +499,7 @@ describe('Hoverifier', () => {
495499
496500 const positionJumps = new Subject < PositionJump > ( )
497501
498- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
502+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
499503
500504 const subscriptions = new Subscription ( )
501505
@@ -567,7 +571,7 @@ describe('Hoverifier', () => {
567571
568572 const positionJumps = new Subject < PositionJump > ( )
569573
570- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
574+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
571575
572576 const subscriptions = new Subscription ( )
573577
@@ -629,7 +633,7 @@ describe('Hoverifier', () => {
629633
630634 const positionJumps = new Subject < PositionJump > ( )
631635
632- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
636+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
633637
634638 const subscriptions = new Subscription ( )
635639
@@ -712,7 +716,7 @@ describe('Hoverifier', () => {
712716
713717 const positionJumps = new Subject < PositionJump > ( )
714718
715- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
719+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
716720
717721 const subscriptions = new Subscription ( )
718722
@@ -766,7 +770,7 @@ describe('Hoverifier', () => {
766770 pinningEnabled : true ,
767771 } )
768772 const positionJumps = new Subject < PositionJump > ( )
769- const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( codeView ) )
773+ const positionEvents = of ( codeView . codeView ) . pipe ( findPositionsFromEvents ( { domFunctions : codeView } ) )
770774
771775 const codeViewSubscription = hoverifier . hoverify ( {
772776 dom : codeView ,
@@ -807,7 +811,9 @@ describe('Hoverifier', () => {
807811 pinningEnabled : true ,
808812 } )
809813 const positionJumps = new Subject < PositionJump > ( )
810- const positionEvents = of ( codeViewProps . codeView ) . pipe ( findPositionsFromEvents ( codeViewProps ) )
814+ const positionEvents = of ( codeViewProps . codeView ) . pipe (
815+ findPositionsFromEvents ( { domFunctions : codeViewProps } )
816+ )
811817
812818 const codeViewSubscription = hoverifier . hoverify ( {
813819 dom : codeViewProps ,
0 commit comments