-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement touch visualizers for Detox
Closes wix#426
- Loading branch information
Showing
6 changed files
with
144 additions
and
66 deletions.
There are no files selected for viewing
This file contains 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
Submodule COSTouchVisualizer
added at
ad729c
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,66 @@ | ||
{ | ||
"name": "detox-test", | ||
"version": "0.0.1", | ||
"private": true, | ||
"scripts": { | ||
"test": ":", | ||
"packager": "react-native start", | ||
"detox-server": "detox run-server", | ||
"e2e:ios": "detox test --configuration ios.sim.release --debug-synchronization 10000", | ||
"e2e:android": "detox test --configuration android.emu.release --loglevel verbose", | ||
"build:ios": "detox build --configuration ios.sim.release", | ||
"build:android": "detox build --configuration android.emu.release" | ||
}, | ||
"dependencies": { | ||
"react": "^16.0.0-beta.5", | ||
"react-native": "^0.49.3" | ||
}, | ||
"devDependencies": { | ||
"detox": "^5.0.0", | ||
"express": "^4.15.3", | ||
"lodash": "^4.14.1", | ||
"mocha": "^4.0.0" | ||
}, | ||
"detox": { | ||
"specs": "e2e", | ||
"__session": { | ||
"server": "ws://localhost:8099", | ||
"sessionId": "test" | ||
}, | ||
"configurations": { | ||
"ios.sim.debug": { | ||
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/example.app", | ||
"build": "set -o pipefail && xcodebuild -project ios/example.xcodeproj -scheme example_ci -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build | xcpretty", | ||
"type": "ios.simulator", | ||
"name": "iPhone 7 Plus" | ||
}, | ||
"ios.sim.release": { | ||
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/example.app", | ||
"build": "set -o pipefail && export CODE_SIGNING_REQUIRED=NO && export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project ios/example.xcodeproj -scheme example_ci -configuration Release -sdk iphonesimulator -derivedDataPath ios/build | xcpretty", | ||
"type": "ios.simulator", | ||
"name": "iPhone 7 Plus" | ||
}, | ||
"ios.none": { | ||
"type": "ios.none", | ||
"name": "iPhone 7 Plus", | ||
"session": { | ||
"server": "ws://localhost:8099", | ||
"sessionId": "test" | ||
} | ||
}, | ||
"android.emu.debug": { | ||
"binaryPath": "android/app/build/outputs/apk/app-debug.apk", | ||
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..", | ||
"type": "android.emulator", | ||
"name": "Nexus_5X_API_24" | ||
}, | ||
"android.emu.release": { | ||
"binaryPath": "android/app/build/outputs/apk/app-release.apk", | ||
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..", | ||
"type": "android.emulator", | ||
"name": "Nexus_5X_API_26" | ||
} | ||
} | ||
} | ||
} | ||
"name": "detox-test", | ||
"version": "0.0.1", | ||
"private": true, | ||
"scripts": { | ||
"test": ":", | ||
"packager": "react-native start", | ||
"detox-server": "detox run-server", | ||
"e2e:ios": "detox test --configuration ios.sim.release --debug-synchronization 10000", | ||
"e2e:android": "detox test --configuration android.emu.release --loglevel verbose", | ||
"build:ios": "detox build --configuration ios.sim.release", | ||
"build:android": "detox build --configuration android.emu.release" | ||
}, | ||
"dependencies": { | ||
"react": "^16.0.0-beta.5", | ||
"react-native": "^0.49.3" | ||
}, | ||
"devDependencies": { | ||
"detox": "^5.0.0", | ||
"express": "^4.15.3", | ||
"lodash": "^4.14.1", | ||
"mocha": "^4.0.0" | ||
}, | ||
"detox": { | ||
"specs": "e2e", | ||
"__session": { | ||
"server": "ws://localhost:8099", | ||
"sessionId": "test" | ||
}, | ||
"configurations": { | ||
"ios.sim.debug": { | ||
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/example.app", | ||
"build": "set -o pipefail && xcodebuild -project ios/example.xcodeproj -scheme example_ci -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build | xcpretty", | ||
"type": "ios.simulator", | ||
"name": "iPhone 7 Plus" | ||
}, | ||
"ios.sim.release": { | ||
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/example.app", | ||
"build": "set -o pipefail && export CODE_SIGNING_REQUIRED=NO && export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -project ios/example.xcodeproj -scheme example_ci -configuration Release -sdk iphonesimulator -derivedDataPath ios/build | xcpretty", | ||
"type": "ios.simulator", | ||
"name": "iPhone 7 Plus" | ||
}, | ||
"ios.none": { | ||
"binaryPath": "ios", | ||
"type": "ios.none", | ||
"name": "iPhone 7 Plus", | ||
"session": { | ||
"server": "ws://localhost:8099", | ||
"sessionId": "test" | ||
} | ||
}, | ||
"android.emu.debug": { | ||
"binaryPath": "android/app/build/outputs/apk/app-debug.apk", | ||
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..", | ||
"type": "android.emulator", | ||
"name": "Nexus_5X_API_24" | ||
}, | ||
"android.emu.release": { | ||
"binaryPath": "android/app/build/outputs/apk/app-release.apk", | ||
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..", | ||
"type": "android.emulator", | ||
"name": "Nexus_5X_API_26" | ||
} | ||
} | ||
} | ||
} |