Hi, I’ve been working my app and getting close to make it work, but my billing API keeps on saying “You will not be billed for this test charge.” even I already set the “isTrue” to false (actually tried both already false and null).
Here’s my code:
shopify.server.js
billing: {
[MONTHLY_PLAN]: {
amount: 1.99,
currencyCode: 'USD',
interval: BillingInterval.Every30Days,
}
}
and here’s my billing page:
await billing.require({
plans: [MONTHLY_PLAN],
isTest: false,
onFailure: async () => billing.request({
plan: MONTHLY_PLAN,
returnUrl: `/app-page`,
}),
})
anyone have the same issue and how do you solved it?
Thanks a lot!