Ver código fonte

Revert "trying to fix travis"

This reverts commit f62cce4897.
Daniel Zlotin 7 anos atrás
pai
commit
a5e303f681
2 arquivos alterados com 5 adições e 4 exclusões
  1. 0
    1
      .travis.yml
  2. 5
    3
      scripts/test.ios.js

+ 0
- 1
.travis.yml Ver arquivo

@@ -38,7 +38,6 @@ script:
38 38
   - yarn run test-js
39 39
   - yarn run test-android
40 40
   - yarn run test-ios
41
-  - cd playground && yarn run e2e release
42 41
   - yarn run release
43 42
   - set +e
44 43
 

+ 5
- 3
scripts/test.ios.js Ver arquivo

@@ -1,9 +1,11 @@
1 1
 const exec = require('shell-utils').exec;
2 2
 
3 3
 function run() {
4
-  exec.execSync(`cd playground && hardlink node_modules/react-native-navigation/ -u || true`);
5
-  exec.execSync(`cd playground && yarn install`);
6
-  //exec.execSync(`cd playground && yarn run e2e release`);
4
+  process.chdir('./playground');
5
+  exec.execSync(`hardlink node_modules/react-native-navigation/ -u || true`);
6
+  exec.execSync(`yarn install`);
7
+  exec.execSync(`yarn run e2e release`);
8
+  process.chdir('../');
7 9
 }
8 10
 
9 11
 run();