We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add some credit card factories nested under fake.creditCard:
fake.creditCard
number
verificationCode
expiry
Are these last two useful? Either way, I'd propose to nest the CC number method under fake.creditCard.number() for future extensibility.
fake.creditCard.number()
The text was updated successfully, but these errors were encountered:
Additional properties to consider:
last4
type
Sorry, something went wrong.
@risharma do we have any current use cases for those?
https://github.com/goodeggs/garbanzo/blob/master/src/graphql/data_sources/user/index.unit.spec.ts#L206-L208
P.S.: I'm fixing to correctly generate last4 in https://github.com/goodeggs/garbanzo/pull/7766
No branches or pull requests
Add some credit card factories nested under
fake.creditCard
:number
: generate a credit card number conforming to the format of the major U.S. credit card providersverificationCode
(or something other name): generate a CVV/CSC/etc. conforming to the format of the major U.S. credit card providersexpiry
generate a reasonable credit card expiry date in the MM/YYYY string formatAre these last two useful? Either way, I'd propose to nest the CC number method under
fake.creditCard.number()
for future extensibility.The text was updated successfully, but these errors were encountered: