Skip to content

Commit

Permalink
git status
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-justin committed Oct 16, 2024
1 parent 2db4d1f commit 46ea903
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ describe("Stripe form test", () => {
await userEvent.clear(amountInput);
await userEvent.type(amountInput, "13");
await userEvent.click(incrementers[0]); // 50PHP * 40
expect(amountInput).toHaveDisplayValue("2013.00");
expect(amountInput).toHaveDisplayValue("2013");

await userEvent.click(incrementers[1]); // 50PHP * 100
expect(amountInput).toHaveDisplayValue("7013.00");
expect(amountInput).toHaveDisplayValue("7013");
});
});

0 comments on commit 46ea903

Please sign in to comment.