react-native-navigation的迁移库

1234567891011121314151617181920
  1. #!/bin/bash -ex
  2. cd playground
  3. yarn install
  4. echo "************ 1"
  5. RCT_NO_LAUNCH_PACKAGER=true cd ios && xcodebuild -scheme playground_release_Detox build -project playground.xcodeproj -sdk iphonesimulator -derivedDataPath ./DerivedData/playground | xcpretty
  6. cd ..
  7. echo "************ 2"
  8. ./node_modules/.bin/detox-server &
  9. echo "************ 3"
  10. detoxAppBuildPath="ios/DerivedData/playground/Build/Products/Release_Detox-iphonesimulator/playground.app" BABEL_ENV=test ./node_modules/mocha/bin/mocha e2e --timeout 240000 --recursive --compilers js:babel-register
  11. echo "************ 4"