Skip to content

Commit

Permalink
Fix E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
samer-stripe committed Mar 10, 2025
1 parent 730d7fe commit e878c8e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:

test-ios:
name: e2e-ios-test
runs-on: macos-15
runs-on: macos-14
env:
MAESTRO_DRIVER_STARTUP_TIMEOUT: 300_000 # 5 minutes
MAESTRO_CLI_ANALYSIS_NOTIFICATION_DISABLED: true
Expand Down
16 changes: 15 additions & 1 deletion example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@
"metaData": [{
"android:name": "com.google.android.gms.wallet.api.enabled",
"android:value": "true"
}]
}],
"signingConfigs": {
"debug": {
"keyAlias": "androiddebugkey",
"keyPassword": "android",
"storeFile": "debug.keystore",
"storePassword": "android"
},
"release": {
"keyAlias": "androiddebugkey",
"keyPassword": "android",
"storeFile": "debug.keystore",
"storePassword": "android"
}
}
}
}
Binary file added example/debug.keystore
Binary file not shown.
10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1865,13 +1865,13 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
FBLazyVector: 6fe148afcef2e3213e484758e3459609d40d57f5
fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
glog: 3d02b25ca00c2d456734d0bcff864cbc62f6ae1a
glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8
hermes-engine: b417d2b2aee3b89b58e63e23a51e02be91dc876d
RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
RCT-Folly: 36fe2295e44b10d831836cc0d1daec5f8abcf809
RCTDeprecation: b2eecf2d60216df56bc5e6be5f063826d3c1ee35
RCTRequired: 78522de7dc73b81f3ed7890d145fa341f5bb32ea
RCTTypeSafety: c135dd2bf50402d87fd12884cbad5d5e64850edd
Expand Down Expand Up @@ -1947,6 +1947,6 @@ SPEC CHECKSUMS:
StripeUICore: 17a4f3adb81ae05ab885e1b353022a430176eab1
Yoga: 9b7fb56e7b08cde60e2153344fa6afbd88e5d99f

PODFILE CHECKSUM: 75d811f4bce5dd14b94d67c55c0c576f09ebb587
PODFILE CHECKSUM: 07143717076b55d29f3c245358c0026c3df220ef

COCOAPODS: 1.16.1
COCOAPODS: 1.16.2
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"private": true,
"scripts": {
"android": "react-native run-android",
"build:android": "npm run mkdist && react-native bundle --entry-file index.js --platform android --dev true --bundle-output dist/main.android.jsbundle --assets-dest dist/res",
"build:ios": "npm run mkdist && react-native bundle --entry-file index.js --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist",
"build:android": "npm run mkdist && react-native bundle --entry-file index.js --platform android --dev false --bundle-output dist/main.android.jsbundle --assets-dest dist/res",
"build:ios": "npm run mkdist && react-native bundle --entry-file index.js --platform ios --dev false --bundle-output dist/main.ios.jsbundle --assets-dest dist",
"install-pods": "pod install --project-directory=ios",
"ios": "react-native run-ios",
"mkdist": "node -e \"require('node:fs').mkdirSync('dist', { recursive: true, mode: 0o755 })\"",
Expand Down

0 comments on commit e878c8e

Please # to comment.