diff --git a/test/api/unit/libs/cron.test.js b/test/api/unit/libs/cron.test.js index 0028a49ffc..6c6a08b985 100644 --- a/test/api/unit/libs/cron.test.js +++ b/test/api/unit/libs/cron.test.js @@ -477,7 +477,6 @@ describe('cron', async () => { }); it('increments consecutive benefits the month after the third paid period has started', async () => { - console.log(user3.purchased.plan); clock = sinon.useFakeTimers(moment().utcOffset(0).startOf('month').add(7, 'months') .add(2, 'days') .toDate()); diff --git a/test/api/unit/libs/payments/payments.test.js b/test/api/unit/libs/payments/payments.test.js index eacc5b86d0..fc069b6fa9 100644 --- a/test/api/unit/libs/payments/payments.test.js +++ b/test/api/unit/libs/payments/payments.test.js @@ -520,12 +520,11 @@ describe('payments/index', () => { it('updates plan.consecutive.offset when changing subscription type', async () => { await api.createSubscription(data); expect(user.purchased.plan.consecutive.offset).to.eql(3); - data.sub.key = "basic_6mo"; + data.sub.key = 'basic_6mo'; await api.createSubscription(data); expect(user.purchased.plan.consecutive.offset).to.eql(6); }); - it('awards the Royal Purple Jackalope pet', async () => { await api.createSubscription(data);