├── .circleci └── circle.yml ├── .flowconfig ├── .gitattributes ├── .gitignore ├── Readme.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── detoxexample │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── index.js ├── ios ├── detoxexample-tvOS │ └── Info.plist ├── detoxexample-tvOSTests │ └── Info.plist ├── detoxexample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── detoxexample-tvOS.xcscheme │ │ └── detoxexample.xcscheme ├── detoxexample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── detoxexampleTests │ ├── Info.plist │ └── detoxexampleTests.m ├── jest ├── config.json ├── detox_config.json └── setup.js ├── package.json ├── src ├── App.js ├── __e2e__ │ └── App.test.js └── __tests__ │ └── App.test.js └── yarn.lock /.circleci/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/.circleci/circle.yml -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/Readme.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/detoxexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/java/com/detoxexample/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/detoxexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/java/com/detoxexample/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'detoxexample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/index.js -------------------------------------------------------------------------------- /ios/detoxexample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/detoxexample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/detoxexample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/detoxexample.xcodeproj/xcshareddata/xcschemes/detoxexample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample.xcodeproj/xcshareddata/xcschemes/detoxexample-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/detoxexample.xcodeproj/xcshareddata/xcschemes/detoxexample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample.xcodeproj/xcshareddata/xcschemes/detoxexample.xcscheme -------------------------------------------------------------------------------- /ios/detoxexample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample/AppDelegate.h -------------------------------------------------------------------------------- /ios/detoxexample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample/AppDelegate.m -------------------------------------------------------------------------------- /ios/detoxexample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/detoxexample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/detoxexample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample/Info.plist -------------------------------------------------------------------------------- /ios/detoxexample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexample/main.m -------------------------------------------------------------------------------- /ios/detoxexampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexampleTests/Info.plist -------------------------------------------------------------------------------- /ios/detoxexampleTests/detoxexampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/ios/detoxexampleTests/detoxexampleTests.m -------------------------------------------------------------------------------- /jest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/jest/config.json -------------------------------------------------------------------------------- /jest/detox_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/jest/detox_config.json -------------------------------------------------------------------------------- /jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/jest/setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/src/App.js -------------------------------------------------------------------------------- /src/__e2e__/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/src/__e2e__/App.test.js -------------------------------------------------------------------------------- /src/__tests__/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/src/__tests__/App.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grabbou/react-native-detox-example/HEAD/yarn.lock --------------------------------------------------------------------------------