Skip to content

Instantly share code, notes, and snippets.

@bmadigan
Forked from ericlbarnes/stripe-test.html
Last active August 29, 2015 14:10
Show Gist options
  • Save bmadigan/8f549a245280bf71909e to your computer and use it in GitHub Desktop.
Save bmadigan/8f549a245280bf71909e to your computer and use it in GitHub Desktop.
<script>
@if (App::environment('local'))
var $el = $("#card-number");
window.stripeData = {
valid: function() {
$el.val('4242424242424242');
},
successAddressFail: function() {
$el.val('4000000000000028');
},
successZipFail: function() {
$el.val('4000000000000036');
},
fail: function() {
$el.val('4000000000000002');
},
failNumber: function() {
$el.val('4242424242424241');
},
failCVC: function() {
$el.val('4000000000000127');
},
failExpired: function() {
$el.val('4000000000000069');
},
failProcessingError: function() {
$el.val('4000000000000119');
}
}
@endif
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment