Procházet zdrojové kódy

Revert "trying to fix travis"

This reverts commit f62cce4897.
Daniel Zlotin před 7 roky
rodič
revize
a5e303f681
2 změnil soubory, kde provedl 5 přidání a 4 odebrání
  1. 0
    1
      .travis.yml
  2. 5
    3
      scripts/test.ios.js

+ 0
- 1
.travis.yml Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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();