├── .babelrc ├── .buckconfig ├── .codeclimate.yml ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ ├── react.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativeboilerplate │ │ │ └── MainActivity.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 └── settings.gradle ├── code_of_conduct.md ├── index.android.js ├── index.ios.js ├── ios ├── RNConfig.h ├── RNConfig.m ├── ReactNativeBoilerplate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Development.xcscheme │ │ ├── Production.xcscheme │ │ └── Staging.xcscheme ├── ReactNativeBoilerplate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNativeBoilerplateTests │ ├── Info.plist │ └── ReactNativeBoilerplateTests.m ├── package.json ├── src ├── __specs__ │ ├── app.spec.js │ └── sanityCheck.spec.js ├── app.js ├── components │ ├── Comment.js │ ├── CommentBox.js │ ├── CommentForm.js │ ├── CommentList.js │ ├── __specs__ │ │ ├── Comment.spec.js │ │ ├── CommentBox.spec.js │ │ ├── CommentForm.spec.js │ │ └── CommentList.spec.js │ └── app.js ├── modules │ ├── auth │ │ ├── __specs__ │ │ │ ├── authAction.spec.js │ │ │ ├── authReducer.spec.js │ │ │ └── authSaga.spec.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── reducer.js │ │ └── saga.js │ ├── reducers.js │ └── sagas.js ├── screens │ ├── auth │ │ ├── components │ │ │ ├── registerComponent.android.js │ │ │ ├── registerComponent.ios.js │ │ │ └── registerComponentStyles.js │ │ └── containers │ │ │ └── authContainer.js │ └── root.js ├── services │ └── api │ │ ├── __specs__ │ │ └── api.spec.js │ │ └── api.js └── store │ └── store.js └── test └── setup-tests.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/.buckconfig -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/react.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeboilerplate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/src/main/java/com/reactnativeboilerplate/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/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/multunus/React-Native-TDD-Tutorial/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/multunus/React-Native-TDD-Tutorial/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/multunus/React-Native-TDD-Tutorial/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ReactNativeBoilerplate' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/RNConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/RNConfig.h -------------------------------------------------------------------------------- /ios/RNConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/RNConfig.m -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/Development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/Development.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/Production.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/Production.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/Staging.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/Staging.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplate/main.m -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplateTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplateTests/ReactNativeBoilerplateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/ios/ReactNativeBoilerplateTests/ReactNativeBoilerplateTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/package.json -------------------------------------------------------------------------------- /src/__specs__/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/__specs__/app.spec.js -------------------------------------------------------------------------------- /src/__specs__/sanityCheck.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/__specs__/sanityCheck.spec.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/app.js -------------------------------------------------------------------------------- /src/components/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/Comment.js -------------------------------------------------------------------------------- /src/components/CommentBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/CommentBox.js -------------------------------------------------------------------------------- /src/components/CommentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/CommentForm.js -------------------------------------------------------------------------------- /src/components/CommentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/CommentList.js -------------------------------------------------------------------------------- /src/components/__specs__/Comment.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/__specs__/Comment.spec.js -------------------------------------------------------------------------------- /src/components/__specs__/CommentBox.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/__specs__/CommentBox.spec.js -------------------------------------------------------------------------------- /src/components/__specs__/CommentForm.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/__specs__/CommentForm.spec.js -------------------------------------------------------------------------------- /src/components/__specs__/CommentList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/__specs__/CommentList.spec.js -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/modules/auth/__specs__/authAction.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/auth/__specs__/authAction.spec.js -------------------------------------------------------------------------------- /src/modules/auth/__specs__/authReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/auth/__specs__/authReducer.spec.js -------------------------------------------------------------------------------- /src/modules/auth/__specs__/authSaga.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/auth/__specs__/authSaga.spec.js -------------------------------------------------------------------------------- /src/modules/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/auth/actions.js -------------------------------------------------------------------------------- /src/modules/auth/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/auth/constants.js -------------------------------------------------------------------------------- /src/modules/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/auth/reducer.js -------------------------------------------------------------------------------- /src/modules/auth/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/auth/saga.js -------------------------------------------------------------------------------- /src/modules/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/reducers.js -------------------------------------------------------------------------------- /src/modules/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/modules/sagas.js -------------------------------------------------------------------------------- /src/screens/auth/components/registerComponent.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/screens/auth/components/registerComponent.android.js -------------------------------------------------------------------------------- /src/screens/auth/components/registerComponent.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/screens/auth/components/registerComponent.ios.js -------------------------------------------------------------------------------- /src/screens/auth/components/registerComponentStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/screens/auth/components/registerComponentStyles.js -------------------------------------------------------------------------------- /src/screens/auth/containers/authContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/screens/auth/containers/authContainer.js -------------------------------------------------------------------------------- /src/screens/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/screens/root.js -------------------------------------------------------------------------------- /src/services/api/__specs__/api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/services/api/__specs__/api.spec.js -------------------------------------------------------------------------------- /src/services/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/services/api/api.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/src/store/store.js -------------------------------------------------------------------------------- /test/setup-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multunus/React-Native-TDD-Tutorial/HEAD/test/setup-tests.js --------------------------------------------------------------------------------