Skip to content

Commit

Permalink
fix(donations): handle updated form field
Browse files Browse the repository at this point in the history
  • Loading branch information
adekbadek committed Nov 19, 2024
1 parent 3515249 commit ef9dbfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/donations.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test("Donations", async ({ page }) => {
.getByPlaceholder("1234 1234 1234 1234")
.fill("4242 4242 4242 42424");
await getStripeIframe(page).getByPlaceholder("MM / YY").fill("04 / 44");
await getStripeIframe(page).getByPlaceholder("CVC").fill("333");
await getStripeIframe(page).getByLabel("Security code").fill("333");

// Depending on geo, Stripe may want a ZIP code, too.
const zipLocator = await getStripeIframe(page).getByPlaceholder("12345");
Expand Down

0 comments on commit ef9dbfc

Please sign in to comment.