├── .flowconfig ├── .gitattributes ├── .github └── TEMPLATE.md ├── .gitignore ├── App.js ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── wtfreactnativetesting │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── boom.gif ├── enzyme.png ├── final.png ├── giphy.gif ├── lifecycle.gif ├── ohmygod.gif ├── setup-done.gif └── testing-app.png ├── babel.config.js ├── cm.sh ├── index.js ├── ios ├── Podfile ├── WtfReactNativeTesting-tvOS │ └── Info.plist ├── WtfReactNativeTesting-tvOSTests │ └── Info.plist ├── WtfReactNativeTesting.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── WtfReactNativeTesting-tvOS.xcscheme │ │ └── WtfReactNativeTesting.xcscheme ├── WtfReactNativeTesting │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── WtfReactNativeTestingTests │ ├── Info.plist │ └── WtfReactNativeTestingTests.m ├── jestSetup.js ├── metro.config.js ├── package.json ├── src ├── Button │ ├── Button.js │ └── Button.spec.js ├── Events │ ├── Events.js │ └── Events.spec.js ├── EventsHook │ ├── EventsHook.js │ └── EventsHook.spec.js ├── Hello │ ├── Hello.js │ └── Hello.spec.js ├── Lifecycle │ ├── Lifecycle.js │ └── Lifecycle.spec.js ├── Login │ ├── Login.js │ └── Login.spec.js ├── Members │ ├── Members.js │ └── Members.spec.js ├── PassingProps │ ├── PassingProps.js │ └── PassingProps.spec.js └── Sum │ ├── Sum.js │ └── Sum.test.js ├── template ├── tem.md └── tem.spec.md └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/.github/TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/wtfreactnativetesting/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/java/com/wtfreactnativetesting/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wtfreactnativetesting/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/java/com/wtfreactnativetesting/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/app.json -------------------------------------------------------------------------------- /assets/boom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/boom.gif -------------------------------------------------------------------------------- /assets/enzyme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/enzyme.png -------------------------------------------------------------------------------- /assets/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/final.png -------------------------------------------------------------------------------- /assets/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/giphy.gif -------------------------------------------------------------------------------- /assets/lifecycle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/lifecycle.gif -------------------------------------------------------------------------------- /assets/ohmygod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/ohmygod.gif -------------------------------------------------------------------------------- /assets/setup-done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/setup-done.gif -------------------------------------------------------------------------------- /assets/testing-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/assets/testing-app.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/babel.config.js -------------------------------------------------------------------------------- /cm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/cm.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting.xcodeproj/xcshareddata/xcschemes/WtfReactNativeTesting-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting.xcodeproj/xcshareddata/xcschemes/WtfReactNativeTesting-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting.xcodeproj/xcshareddata/xcschemes/WtfReactNativeTesting.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting.xcodeproj/xcshareddata/xcschemes/WtfReactNativeTesting.xcscheme -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting/AppDelegate.h -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting/AppDelegate.m -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting/Info.plist -------------------------------------------------------------------------------- /ios/WtfReactNativeTesting/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTesting/main.m -------------------------------------------------------------------------------- /ios/WtfReactNativeTestingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTestingTests/Info.plist -------------------------------------------------------------------------------- /ios/WtfReactNativeTestingTests/WtfReactNativeTestingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/ios/WtfReactNativeTestingTests/WtfReactNativeTestingTests.m -------------------------------------------------------------------------------- /jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/jestSetup.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/package.json -------------------------------------------------------------------------------- /src/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Button/Button.js -------------------------------------------------------------------------------- /src/Button/Button.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Button/Button.spec.js -------------------------------------------------------------------------------- /src/Events/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Events/Events.js -------------------------------------------------------------------------------- /src/Events/Events.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Events/Events.spec.js -------------------------------------------------------------------------------- /src/EventsHook/EventsHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/EventsHook/EventsHook.js -------------------------------------------------------------------------------- /src/EventsHook/EventsHook.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/EventsHook/EventsHook.spec.js -------------------------------------------------------------------------------- /src/Hello/Hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Hello/Hello.js -------------------------------------------------------------------------------- /src/Hello/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Hello/Hello.spec.js -------------------------------------------------------------------------------- /src/Lifecycle/Lifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Lifecycle/Lifecycle.js -------------------------------------------------------------------------------- /src/Lifecycle/Lifecycle.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Lifecycle/Lifecycle.spec.js -------------------------------------------------------------------------------- /src/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Login/Login.js -------------------------------------------------------------------------------- /src/Login/Login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Login/Login.spec.js -------------------------------------------------------------------------------- /src/Members/Members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Members/Members.js -------------------------------------------------------------------------------- /src/Members/Members.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Members/Members.spec.js -------------------------------------------------------------------------------- /src/PassingProps/PassingProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/PassingProps/PassingProps.js -------------------------------------------------------------------------------- /src/PassingProps/PassingProps.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/PassingProps/PassingProps.spec.js -------------------------------------------------------------------------------- /src/Sum/Sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Sum/Sum.js -------------------------------------------------------------------------------- /src/Sum/Sum.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/src/Sum/Sum.test.js -------------------------------------------------------------------------------- /template/tem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/template/tem.md -------------------------------------------------------------------------------- /template/tem.spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/template/tem.spec.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuantvk/WtfReactNativeTesting/HEAD/yarn.lock --------------------------------------------------------------------------------