react-native-firebase/bridge/README.md

82 lines
2.4 KiB
Markdown
Raw Permalink Normal View History

2018-03-23 14:26:11 +00:00
# React Native Firebase - Testing Project
2018-03-23 13:40:07 +00:00
## Requirements
* Make sure you have Xcode installed (tested with Xcode 8.1-8.2).
2018-03-23 14:26:11 +00:00
* make sure you have node installed (`brew install node`, node 7.6.0 and up is required.
2018-03-23 13:40:07 +00:00
* Make sure you have react-native dependencies installed:
* react-native-cli is installed (`npm install -g react-native-cli`)
* watchman is installed (`brew install watchman`)
2018-03-23 14:26:11 +00:00
* [appleSimUtils](https://github.com/wix/AppleSimulatorUtils)
* detox-cli `npm install -g detox-cli`
2018-03-23 13:40:07 +00:00
### Step 1: Npm install
* Run `npm install`.
2018-04-12 17:13:40 +00:00
## To test build of your app
2018-03-23 13:40:07 +00:00
### Step 2: Build
* Build the demo project
```sh
detox build --configuration ios.sim.debug
```
### Step 3: Test
* start react-native packager
```sh
npm run start
```
* Run tests on the demo project
```sh
detox test --configuration ios.sim.debug
```
This action will open a new simulator and run the tests on it.
2018-03-23 22:18:19 +00:00
2018-03-24 05:55:08 +00:00
### TODO - Troubleshooting
2018-03-23 22:18:19 +00:00
Gradle issues... https://stackoverflow.com/questions/46917365/error-could-not-initialize-class-com-android-sdklib-repository-androidsdkhandle?rq=1
mac: `export JAVA_HOME="/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home"`
windows `"C://Program Files/Java/jdk_1.x_"`
android sdk root `export ANDROID_SDK_ROOT="/Users/mike/Library/Android/sdk"`
Add platform-tools to your path
echo 'export ANDROID_HOME=/Users/$USER/Library/Android/sdk' >> ~/.bash_profile
echo 'export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools' >> ~/.bash_profile
Name: TestingAVD
CPU/ABI: null (null)
Path: /Users/mike/.android/avd/Actually_THIS_one.avd
Error: Failed to parse properties from /Users/mike/.android/avd/Actually_THIS_one.avd/config.ini
2018-03-24 05:53:49 +00:00
#### Running specific tests
2018-04-12 17:13:40 +00:00
Mocha supports the `.only` syntax, e.g. instead of `describe(...) || it(...)` you can use `describe.only(...) || it.only(...)` to only run that specific context or test.
Another way to do this is via adding a `--grep` option to e2e/mocha.opts file, e.g. `--grep auth` for all tests that have auth in the file path or tests descriptions.
2018-03-24 05:53:49 +00:00
#### Running Node debugger
Add `--inspect` to e2e/mocha.opts file
To open node debugger tools on chrome navigate to chrome://inspect/#devices and click the `Open dedicated DevTools for Node` link.
Add the default connection of `localhost:9229` if you haven't already - then the debugger will automatically connect everytime you start tests with inspect flag.
2018-03-24 06:31:04 +00:00
#### Mocha options
See https://mochajs.org/#usage