@@ -166,7 +166,7 @@ describe('ChargeBeeService - Subscription Management', () => {
166166 expect ( result . product ) . to . equal ( 'enterprise-plan' ) ;
167167 expect ( result . recurring ?. interval ) . to . equal ( RecurringInterval . MONTH ) ;
168168 expect ( result . recurring ?. intervalCount ) . to . equal ( 1 ) ;
169- expect ( result . active ) . to . be . true ( ) ;
169+ expect ( result . active ) . to . be . true ;
170170 } ) ;
171171
172172 it ( 'returns undefined recurring when no period_unit is set' , async ( ) => {
@@ -190,7 +190,7 @@ describe('ChargeBeeService - Subscription Management', () => {
190190 product : 'setup' ,
191191 } ) ;
192192
193- expect ( result . recurring ) . to . be . undefined ( ) ;
193+ expect ( result . recurring ) . to . be . undefined ;
194194 } ) ;
195195 } ) ;
196196
@@ -258,7 +258,7 @@ describe('ChargeBeeService - Subscription Management', () => {
258258 expect ( result . customerId ) . to . equal ( 'cust_tenant_abc' ) ;
259259 expect ( result . currentPeriodStart ) . to . equal ( 1700000000 ) ;
260260 expect ( result . currentPeriodEnd ) . to . equal ( 1702592000 ) ;
261- expect ( result . cancelAtPeriodEnd ) . to . be . false ( ) ;
261+ expect ( result . cancelAtPeriodEnd ) . to . be . false ;
262262 } ) ;
263263 } ) ;
264264
@@ -301,7 +301,7 @@ describe('ChargeBeeService - Subscription Management', () => {
301301
302302 const [ , params ] = updateStub . firstCall . args ;
303303 // ProrationBehavior.NONE -> prorate: false
304- expect ( params ! . prorate ) . to . be . false ( ) ;
304+ expect ( params ! . prorate ) . to . be . false ;
305305 } ) ;
306306 } ) ;
307307
@@ -325,7 +325,7 @@ describe('ChargeBeeService - Subscription Management', () => {
325325 Record < string , unknown > ,
326326 ] ;
327327 expect ( subId ) . to . equal ( 'sub_cb_001' ) ;
328- expect ( params . end_of_term ) . to . be . false ( ) ;
328+ expect ( params . end_of_term ) . to . be . false ;
329329 expect ( params . cancel_reason_code ) . to . equal ( 'customer_request' ) ;
330330 } ) ;
331331
@@ -348,7 +348,7 @@ describe('ChargeBeeService - Subscription Management', () => {
348348 string ,
349349 Record < string , unknown > ,
350350 ] ;
351- expect ( params . end_of_term ) . to . be . true ( ) ;
351+ expect ( params . end_of_term ) . to . be . true ;
352352 expect ( params . cancel_reason_code ) . to . equal ( 'not_paid' ) ;
353353 } ) ;
354354 } ) ;
@@ -453,7 +453,7 @@ describe('ChargeBeeService - Subscription Management', () => {
453453
454454 const result = await service . checkProductExists ( 'enterprise-plan' ) ;
455455
456- expect ( result ) . to . be . true ( ) ;
456+ expect ( result ) . to . be . true ;
457457 } ) ;
458458
459459 it ( 'returns false when the item is archived' , async ( ) => {
@@ -463,7 +463,7 @@ describe('ChargeBeeService - Subscription Management', () => {
463463
464464 const result = await service . checkProductExists ( 'old-plan' ) ;
465465
466- expect ( result ) . to . be . false ( ) ;
466+ expect ( result ) . to . be . false ;
467467 } ) ;
468468
469469 it ( 'returns false when Chargebee signals resource_not_found' , async ( ) => {
@@ -478,7 +478,7 @@ describe('ChargeBeeService - Subscription Management', () => {
478478
479479 const result = await service . checkProductExists ( 'missing-plan' ) ;
480480
481- expect ( result ) . to . be . false ( ) ;
481+ expect ( result ) . to . be . false ;
482482 } ) ;
483483
484484 it ( 're-throws unexpected errors from Chargebee' , async ( ) => {
0 commit comments