|
| 1 | +{ |
| 2 | + "testRunner": "jest", |
| 3 | + "runnerConfig": "e2e/config.json", |
| 4 | + "skipLegacyWorkersInjection": true, |
| 5 | + "apps": { |
| 6 | + "ios.native.debug": { |
| 7 | + "name": "iOS NativeMessaging Debug", |
| 8 | + "type": "ios.app", |
| 9 | + "binaryPath": "examples/NativeMessaging/ios/build/Build/Products/Debug-iphonesimulator/NativeMessaging.app", |
| 10 | + "build": "cd examples/NativeMessaging && xcodebuild -workspace ios/NativeMessaging.xcworkspace -scheme NativeMessaging -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build" |
| 11 | + }, |
| 12 | + "ios.native.release": { |
| 13 | + "name": "iOS NativeMessaging Release", |
| 14 | + "type": "ios.app", |
| 15 | + "binaryPath": "examples/NativeMessaging/ios/build/Build/Products/Release-iphonesimulator/NativeMessaging.app", |
| 16 | + "build": "cd examples/NativeMessaging && xcodebuild -workspace ios/NativeMessaging.xcworkspace -scheme NativeMessaging -configuration Release -sdk iphonesimulator -derivedDataPath ios/build" |
| 17 | + }, |
| 18 | + "android.native.debug": { |
| 19 | + "name": "Android NativeMessaging Debug", |
| 20 | + "type": "android.apk", |
| 21 | + "binaryPath": "examples/NativeMessaging/android/app/build/outputs/apk/debug/app-debug.apk", |
| 22 | + "build": "cd examples/NativeMessaging/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug" |
| 23 | + }, |
| 24 | + "android.native.release": { |
| 25 | + "name": "Android NativeMessaging Release", |
| 26 | + "type": "android.apk", |
| 27 | + "binaryPath": "examples/NativeMessaging/android/app/build/outputs/apk/release/app-release.apk", |
| 28 | + "build": "cd examples/NativeMessaging/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release" |
| 29 | + }, |
| 30 | + "ios.sample.debug": { |
| 31 | + "name": "iOS SampleApp Debug", |
| 32 | + "type": "ios.app", |
| 33 | + "binaryPath": "examples/SampleApp/ios/build/Build/Products/Debug-iphonesimulator/SampleApp.app", |
| 34 | + "build": "cd examples/SampleApp && xcodebuild -workspace ios/SampleApp.xcworkspace -scheme SampleApp -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build" |
| 35 | + }, |
| 36 | + "ios.sample.release": { |
| 37 | + "name": "iOS SampleApp Release", |
| 38 | + "type": "ios.app", |
| 39 | + "binaryPath": "examples/SampleApp/ios/build/Build/Products/Release-iphonesimulator/SampleApp.app", |
| 40 | + "build": "cd examples/SampleApp && xcodebuild -workspace ios/SampleApp.xcworkspace -scheme SampleApp -configuration Release -sdk iphonesimulator -derivedDataPath ios/build" |
| 41 | + }, |
| 42 | + "android.sample.debug": { |
| 43 | + "name": "Android SampleApp Debug", |
| 44 | + "type": "android.apk", |
| 45 | + "binaryPath": "examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk", |
| 46 | + "build": "cd examples/SampleApp/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=debug" |
| 47 | + }, |
| 48 | + "android.sample.release": { |
| 49 | + "name": "Android SampleApp Release", |
| 50 | + "type": "android.apk", |
| 51 | + "binaryPath": "examples/SampleApp/android/app/build/outputs/apk/release/app-release.apk", |
| 52 | + "build": "cd examples/SampleApp/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release" |
| 53 | + } |
| 54 | + }, |
| 55 | + "devices": { |
| 56 | + "simulator": { |
| 57 | + "type": "ios.simulator", |
| 58 | + "device": { |
| 59 | + "type": "iPhone 12" |
| 60 | + } |
| 61 | + }, |
| 62 | + "emulator": { |
| 63 | + "type": "android.emulator", |
| 64 | + "device": { |
| 65 | + "avdName": "Pixel4" |
| 66 | + } |
| 67 | + } |
| 68 | + }, |
| 69 | + "configurations": { |
| 70 | + "ios.native.debug": { |
| 71 | + "device": "simulator", |
| 72 | + "app": "ios.native.debug" |
| 73 | + }, |
| 74 | + "ios.native.release": { |
| 75 | + "device": "simulator", |
| 76 | + "app": "ios.native.release" |
| 77 | + }, |
| 78 | + "android.native.debug": { |
| 79 | + "device": "emulator", |
| 80 | + "app": "android.native.debug" |
| 81 | + }, |
| 82 | + "android.native.release": { |
| 83 | + "device": "emulator", |
| 84 | + "app": "android.native.release" |
| 85 | + }, |
| 86 | + "ios.sample.debug": { |
| 87 | + "device": "simulator", |
| 88 | + "app": "ios.sample.debug" |
| 89 | + }, |
| 90 | + "ios.sample.release": { |
| 91 | + "device": "simulator", |
| 92 | + "app": "ios.sample.release" |
| 93 | + }, |
| 94 | + "android.sample.debug": { |
| 95 | + "device": "emulator", |
| 96 | + "app": "android.sample.debug" |
| 97 | + }, |
| 98 | + "android.sample.release": { |
| 99 | + "device": "emulator", |
| 100 | + "app": "android.sample.release" |
| 101 | + } |
| 102 | + } |
| 103 | +} |
0 commit comments