Add RN hardcoded buyer identity maestro E2E#337
Open
kyle-schellen wants to merge 1 commit into
Open
Conversation
This was referenced Jun 25, 2026
Contributor
Author
11 tasks
kyle-schellen
commented
Jun 25, 2026
| @@ -0,0 +1,9 @@ | |||
| appId: ${APP_ID} | |||
Contributor
Author
There was a problem hiding this comment.
Required to dismiss optional React Native debug warning when it appears in dev builds.
Contributor
There was a problem hiding this comment.
What is the warning you're suppressing? LogBox exposes a way to suppress warnings if they're not an issue, otherwise we might want to just fix the warning
https://github.com/orgs/community/discussions/75497
import { LogBox } from "react-native";
// You can choose the warnings you want to ignore for example
LogBox.ignoreLogs([
'<string you want to match against in console>'
]);
b41ea91 to
465b25f
Compare
07f43b0 to
da45de3
Compare
465b25f to
765ba34
Compare
da45de3 to
6d8d2de
Compare
765ba34 to
ca24c87
Compare
4fdf5b9 to
dacd2f9
Compare
ca24c87 to
0bde065
Compare
dacd2f9 to
fed455d
Compare
be7093a to
9eee9b8
Compare
fed455d to
2217552
Compare
9eee9b8 to
f7e72ae
Compare
2217552 to
a361584
Compare
f7e72ae to
4424d59
Compare
309a059 to
629372a
Compare
43a0d35 to
08c735b
Compare
9e532b6 to
7c46cb0
Compare
f18cf71 to
1d64a24
Compare
7c46cb0 to
c591d53
Compare
1d64a24 to
9dd9694
Compare
c591d53 to
f54fa54
Compare
2bfac18 to
04d7e93
Compare
f54fa54 to
72417b5
Compare
04d7e93 to
c5a6009
Compare
72417b5 to
f52bdca
Compare
0c90475 to
29c2688
Compare
11 tasks
f52bdca to
b7b3c9d
Compare
29c2688 to
53ee489
Compare
Package Size
Measured from the PR base SHA and PR head SHA. This comment reports package artifact sizes only; it is not a final app binary-size report. |
b7b3c9d to
347592f
Compare
53ee489 to
3fcdd8b
Compare
3fcdd8b to
cf52237
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

What changes are you making?
Adds a React Native Maestro smoke test for hardcoded buyer identity checkout. The RN sample E2E cart bootstrap link now accepts
buyerIdentityMode, so both guest and hardcoded buyer identity scenarios create their cart through the same cold-start bootstrap path.The hardcoded scenario seeds a cart with hardcoded buyer identity, opens checkout directly to payment, and completes checkout successfully.
This also scopes the RN Maestro runner to the React Native suite so future platform E2Es do not get picked up accidentally.
A follow-up PR will add focused runner flags such as
--guestand--hardcoded-buyer-identityfor running individual scenarios.How to test
dev rn e2e iosdev rn e2e androidBefore you merge
Important
platforms/swift/README.mdand/orplatforms/android/README.md)Releasing a new Swift version?
ShopifyCheckoutKit.podspecplatforms/swift/Sources/ShopifyCheckoutKit/ShopifyCheckoutKit.swiftplatforms/swift/CHANGELOG.mdplatforms/swift/README.md(major version only)Releasing a new Android version?
versionNameinplatforms/android/lib/build.gradleplatforms/android/CHANGELOG.mdplatforms/android/README.mdTip
See the Contributing documentation for the full release process per platform.