Skip to content

Commit ac04e0d

Browse files
committed
Update test
1 parent 4c1e6f5 commit ac04e0d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

test/resolvers/billingNew.test.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)