stripe/stripe-mock

Can we specify what data is on a checkout session retrieval?

Closed this issue · 2 comments

I'm sure there are many other scenarios like this.

If I call Session.retrieve(sessionID), subscription is null (If using the stripe-mock endpoint), which means I cannot test that the correct values are being returned from my endpoint.

Is it possible to configure whether a subscription will be returned or not etc?

Unfortunately this is not something we support today and stripe-mock just gives one example response based on a hardcoded fixture so you can't override any of the properties in the response. Our recommendation would be to do your own mock in that case with your own local fixture instead.

Okay, thanks for the clarification!