Browse Source

Revert "trying to fix travis"

This reverts commit f62cce4897.
Daniel Zlotin 8 years ago
parent
commit
a5e303f681
2 changed files with 5 additions and 4 deletions
  1. 0
    1
      .travis.yml
  2. 5
    3
      scripts/test.ios.js

+ 0
- 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
-  - cd playground && yarn run e2e release
42
   - yarn run release
41
   - yarn run release
43
   - set +e
42
   - set +e
44
 
43
 

+ 5
- 3
scripts/test.ios.js View File

1
 const exec = require('shell-utils').exec;
1
 const exec = require('shell-utils').exec;
2
 
2
 
3
 function run() {
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
 run();
11
 run();