react-native-navigation的迁移库

test.ios.js 253B

123456789101112
  1. const exec = require('shell-utils').exec;
  2. function run() {
  3. process.chdir('./playground');
  4. exec.execSync(`yarn run quickinstall`);
  5. exec.execSync(`yarn run xcodeunit`);
  6. exec.execSync(`yarn run e2e-ios release`);
  7. process.chdir('../');
  8. }
  9. run();