File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -123,8 +123,6 @@ describe('GraphQLBillingNew', () => {
123123 ) ;
124124
125125 expect ( result . isCardLinkOperation ) . toBe ( false ) ;
126- expect ( result . plan . monthlyCharge ) . toBe ( 1000 ) ;
127- expect ( result . currency ) . toBe ( 'RUB' ) ;
128126
129127 // Check that nextPaymentDate is one month from now
130128 const oneMonthFromNow = new Date ( ) ;
@@ -160,8 +158,6 @@ describe('GraphQLBillingNew', () => {
160158 ) ;
161159
162160 expect ( result . isCardLinkOperation ) . toBe ( true ) ;
163- expect ( result . plan . monthlyCharge ) . toBe ( 1000 ) ;
164- expect ( result . currency ) . toBe ( 'RUB' ) ;
165161
166162 const oneMonthFromLastChargeDate = new Date ( workspace . lastChargeDate ) ;
167163 oneMonthFromLastChargeDate . setMonth ( oneMonthFromLastChargeDate . getMonth ( ) + 1 ) ;
@@ -191,8 +187,6 @@ describe('GraphQLBillingNew', () => {
191187 ) ;
192188
193189 expect ( result . isCardLinkOperation ) . toBe ( false ) ;
194- expect ( result . plan . monthlyCharge ) . toBe ( 1000 ) ;
195- expect ( result . currency ) . toBe ( 'RUB' ) ;
196190
197191 // Check that nextPaymentDate is one month from now
198192 const oneMonthFromNow = new Date ( ) ;
You can’t perform that action at this time.
0 commit comments