TestCardsGet a free key

Test cards for Cypress

Fill a Stripe (or any) payment form in a Cypress end-to-end test with a known test card so the run is deterministic.

Example

Cypress · js
// cypress/e2e/checkout.cy.js
const TEST_CARD = "4242 4242 4242 4242"; // Visa, succeeds in test mode

it("completes checkout", () => {
  cy.visit("/checkout");
  // Stripe mounts the card field in an iframe:
  cy.get("iframe").its("0.contentDocument.body").find('[name="cardnumber"]')
    .type(TEST_CARD);
  cy.get('[name="exp-date"]').type("12 / 34");
  cy.get('[name="cvc"]').type("123");
  cy.contains("Pay").click();
  cy.contains("Payment succeeded");
});

Test card numbers

The standard Stripe test numbers — successes and declines you can wire into your Cypress suite.

Successful payments

Cards that complete a charge in test mode.

NumberBrandBehavior (test mode)
4242 4242 4242 4242
VisaSucceeds and immediately processes the payment.
4000 0566 5566 5556
Visa (debit)Succeeds; card type is debit.
5555 5555 5555 4444
MastercardSucceeds and immediately processes the payment.
2223 0031 2200 3222
Mastercard (2-series)Succeeds; tests the 2221–2720 range.
5200 8282 8282 8210
Mastercard (debit)Succeeds; card type is debit.
5105 1051 0510 5100
Mastercard (prepaid)Succeeds; card type is prepaid.
3782 822463 10005
American ExpressSucceeds; 15-digit PAN, 4-digit CID.
3714 496353 98431
American ExpressSucceeds; alternate Amex test number.
6011 1111 1111 1117
DiscoverSucceeds and immediately processes the payment.
3056 9300 0902 0004
Diners ClubSucceeds; 14-digit Diners Club.
3566 0020 2036 0505
JCBSucceeds and immediately processes the payment.
6200 0000 0000 0005
UnionPaySucceeds and immediately processes the payment.

Declines & errors

Trigger specific decline codes to test your error handling.

NumberBrandBehavior (test mode)
4000 0000 0000 0002
VisaCharge is declined with a generic decline code.
4000 0000 0000 9995
VisaDeclined: insufficient_funds.
4000 0000 0000 9987
VisaDeclined: lost_card.
4000 0000 0000 9979
VisaDeclined: stolen_card.
4000 0000 0000 0069
VisaDeclined: expired_card.
4000 0000 0000 0127
VisaDeclined: incorrect_cvc.
4000 0000 0000 0119
VisaDeclined: processing_error.
4100 0000 0000 0019
VisaDeclined: flagged as fraudulent (Radar).

Use any future expiry date (e.g. 12 / 34) and any postal code. Behaviors shown are for Stripe’s test mode; other processors publish their own test numbers. These cards are non-functional fixtures — they will be declined in production.

More frameworks:PlaywrightJestVitest