├── .bundle └── config ├── .detoxrc.js ├── .eslintrc.js ├── .gitignore ├── .node-version ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── reactnativetdd │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── reactnativetdd │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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 │ │ └── release │ │ └── java │ │ └── com │ │ └── reactnativetdd │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── e2e ├── creating_a_message.test.js └── jest.config.js ├── index.js ├── ios ├── .xcode.env ├── Podfile ├── Podfile.lock ├── ReactNativeTDD.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ReactNativeTDD.xcscheme ├── ReactNativeTDD.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ReactNativeTDD │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── ReactNativeTDDTests │ ├── Info.plist │ └── ReactNativeTDDTests.m ├── jest-setup-after-env.js ├── metro.config.js ├── package.json ├── src ├── MessageList.tsx ├── NewMessageForm.spec.tsx └── NewMessageForm.tsx ├── tsconfig.json └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/.bundle/config -------------------------------------------------------------------------------- /.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/.detoxrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/reactnativetdd/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/debug/java/com/reactnativetdd/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativetdd/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/main/java/com/reactnativetdd/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativetdd/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/main/java/com/reactnativetdd/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/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/learn-tdd-in/react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/java/com/reactnativetdd/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/app/src/release/java/com/reactnativetdd/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /e2e/creating_a_message.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/e2e/creating_a_message.test.js -------------------------------------------------------------------------------- /e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/e2e/jest.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/ReactNativeTDD.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeTDD.xcodeproj/xcshareddata/xcschemes/ReactNativeTDD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD.xcodeproj/xcshareddata/xcschemes/ReactNativeTDD.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeTDD.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ReactNativeTDD.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/ReactNativeTDD/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeTDD/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD/AppDelegate.mm -------------------------------------------------------------------------------- /ios/ReactNativeTDD/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeTDD/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeTDD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTDD/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/ReactNativeTDD/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDD/main.m -------------------------------------------------------------------------------- /ios/ReactNativeTDDTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDDTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTDDTests/ReactNativeTDDTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/ios/ReactNativeTDDTests/ReactNativeTDDTests.m -------------------------------------------------------------------------------- /jest-setup-after-env.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-native/extend-expect'; 2 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/package.json -------------------------------------------------------------------------------- /src/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/src/MessageList.tsx -------------------------------------------------------------------------------- /src/NewMessageForm.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/src/NewMessageForm.spec.tsx -------------------------------------------------------------------------------- /src/NewMessageForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/src/NewMessageForm.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-tdd-in/react-native/HEAD/yarn.lock --------------------------------------------------------------------------------