react-native-navigation的迁移库

test.all.js 305B

1234567891011
  1. const shellUtils = require('shell-utils');
  2. function run() {
  3. shellUtils.exec.execSync(`yarn run test-js`);
  4. shellUtils.exec.execSync(`yarn run test-unit-android && yarn run test-unit-ios`);
  5. shellUtils.exec.exec(`yarn run test-e2e-android`);
  6. shellUtils.exec.exec(`yarn run test-e2e-ios`);
  7. }
  8. run();