瀏覽代碼

another try

Daniel Zlotin 8 年之前
父節點
當前提交
1b002acb04
共有 2 個文件被更改,包括 6 次插入1 次删除
  1. 1
    1
      .travis.yml
  2. 5
    0
      scripts/travis.sh

+ 1
- 1
.travis.yml 查看文件

@@ -38,8 +38,8 @@ script:
38 38
   - yarn run test-js
39 39
   - yarn run test-android
40 40
   - yarn run test-ios
41
+  - ./scripts/travis.sh
41 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 43
   - set +e
44 44
 
45 45
 after_script:

+ 5
- 0
scripts/travis.sh 查看文件

@@ -0,0 +1,5 @@
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 ..