@@ -627,7 +627,7 @@ describeSpec('Listens:', [], () => {
627
627
specTest ( 'Query is rejected by primary client' , [ 'multi-client' ] , ( ) => {
628
628
const query = Query . atPath ( path ( 'collection' ) ) ;
629
629
630
- return client ( 0 , /* withGcEnabled= */ false )
630
+ return client ( 0 )
631
631
. becomeVisible ( )
632
632
. client ( 1 )
633
633
. userListens ( query )
@@ -648,7 +648,7 @@ describeSpec('Listens:', [], () => {
648
648
( ) => {
649
649
const query = Query . atPath ( path ( 'collection' ) ) ;
650
650
651
- return client ( 0 , /* withGcEnabled= */ false )
651
+ return client ( 0 )
652
652
. becomeVisible ( )
653
653
. client ( 1 )
654
654
. userListens ( query )
@@ -676,7 +676,7 @@ describeSpec('Listens:', [], () => {
676
676
( ) => {
677
677
const query = Query . atPath ( path ( 'collection' ) ) ;
678
678
679
- return client ( 0 , /*withGcEnabled=*/ false )
679
+ return client ( 0 )
680
680
. becomeVisible ( )
681
681
. client ( 1 )
682
682
. userListens ( query )
@@ -703,7 +703,7 @@ describeSpec('Listens:', [], () => {
703
703
const query1 = Query . atPath ( path ( 'collection' ) ) ;
704
704
const query2 = Query . atPath ( path ( 'collection' ) ) ;
705
705
706
- return client ( 0 , /*withGcEnabled=*/ false )
706
+ return client ( 0 )
707
707
. userListens ( query1 )
708
708
. watchAcksFull ( query1 , 1000 )
709
709
. expectEvents ( query1 , { } )
@@ -729,7 +729,7 @@ describeSpec('Listens:', [], () => {
729
729
const query = Query . atPath ( path ( 'collection' ) ) ;
730
730
const docA = doc ( 'collection/a' , 2000 , { key : 'a' } ) ;
731
731
732
- return client ( 0 , /*withGcEnabled=*/ false )
732
+ return client ( 0 )
733
733
. becomeVisible ( )
734
734
. client ( 1 )
735
735
. userListens ( query )
@@ -761,7 +761,7 @@ describeSpec('Listens:', [], () => {
761
761
const docA = doc ( 'collection/a' , 1000 , { key : 'a' } ) ;
762
762
const docB = doc ( 'collection/b' , 2000 , { key : 'b' } ) ;
763
763
764
- return client ( 0 , /*withGcEnabled=*/ false )
764
+ return client ( 0 )
765
765
. expectPrimaryState ( true )
766
766
. client ( 1 )
767
767
. userListens ( query )
@@ -795,7 +795,7 @@ describeSpec('Listens:', [], () => {
795
795
// Client 1 and Client 3 listen to the same query. When client 1 shuts
796
796
// down, client 2 becomes primary and takes ownership of a query it
797
797
// did not previously listen to.
798
- return client ( 0 , /*withGcEnabled=*/ false )
798
+ return client ( 0 )
799
799
. expectPrimaryState ( true )
800
800
. userListens ( query )
801
801
. watchAcksFull ( query , 1000 , docA )
0 commit comments