Browse Source

another try

Daniel Zlotin 8 years ago
parent
commit
1b002acb04
2 changed files with 6 additions and 1 deletions
  1. 1
    1
      .travis.yml
  2. 5
    0
      scripts/travis.sh

+ 1
- 1
.travis.yml View File

38
   - yarn run test-js
38
   - yarn run test-js
39
   - yarn run test-android
39
   - yarn run test-android
40
   - yarn run test-ios
40
   - yarn run test-ios
41
+  - ./scripts/travis.sh
41
   - yarn run release
42
   - yarn run release
42
-  - detoxAppBuildPath="ios/DerivedData/playground/Build/Products/Release_Detox-iphonesimulator/playground.app" BABEL_ENV=test ./node_modules/mocha/bin/mocha e2e --timeout 120000 --recursive --compilers js:babel-register
43
   - set +e
43
   - set +e
44
 
44
 
45
 after_script:
45
 after_script:

+ 5
- 0
scripts/travis.sh View File

1
+#!/bin/bash -e
2
+
3
+cd playground
4
+detoxAppBuildPath="ios/DerivedData/playground/Build/Products/Release_Detox-iphonesimulator/playground.app" BABEL_ENV=test ./node_modules/mocha/bin/mocha e2e --timeout 120000 --recursive --compilers js:babel-register
5
+cd ..