-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
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
Update the CI workflow #945
Conversation
Applied the same settings as: - stripe-samples/accept-a-payment#1385 - stripe-samples/accept-a-payment#1612
@@ -6,6 +6,8 @@ export default defineConfig({ | |||
react(), | |||
], | |||
server: { | |||
host: '0.0.0.0', | |||
port: 3000, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hideokamoto-stripe This changes Vite's port from 5173
to 3000
. I did it because the current CI configuration expects the port 3000
for frontend servers. Also, I think keep the port unchanged from the original 3000
less confuse the users. But let me know if we should keep the default port number 🙏 In that case, we could sed
the port in CI.
end | ||
within_frame first('iframe[name*=__privateStripeFrame][src*=three-ds') do | ||
within_frame first('iframe#challengeFrame') do | ||
click_on 'Complete' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems the 3DS UI has changed a bit 😅
@hideokamoto-stripe Hi Hide, I added some changes to make CI green 🍏 Also, left a couple of comments 🙏 |
@hideokamoto-stripe I also opened a similar PR for checkout-one-time-paymens. Could you take a look when convenient? Thanks 🙇 |
LGMT! |
Hi. I applied the changes the same as the following PRs to the CI workflow here:
Also, I updated Flask and Capybara configurations to fix failing tests.