react-native-navigation的迁移库

test.ios.js 210B

1234567891011
  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 e2e release`);
  6. process.chdir('../');
  7. }
  8. run();