react-native-navigation的迁移库

test-e2e.js 987B

1234567891011121314151617181920212223242526
  1. const _ = require('lodash');
  2. const exec = require('shell-utils').exec;
  3. const android = _.includes(process.argv, '--android');
  4. const release = _.includes(process.argv, '--release');
  5. const skipBuild = _.includes(process.argv, '--skipBuild');
  6. const headless = _.includes(process.argv, '--headless');
  7. const multi = _.includes(process.argv, '--multi');
  8. run();
  9. function run() {
  10. const platform = android ? `android` : `ios`;
  11. const prefix = android ? `android.emu` : `ios.sim`;
  12. const suffix = release ? `release` : `debug`;
  13. const configuration = `${prefix}.${suffix}`;
  14. const cleanup = process.env.CI ? `--cleanup` : ``;
  15. const headless$ = android ? headless ? `--headless` : `` : ``;
  16. const workers = multi ? 2 : 1;
  17. if (!skipBuild) {
  18. exec.execSync(`detox build --configuration ${configuration}`);
  19. }
  20. exec.execSync(`detox test --configuration ${configuration} --platform ${platform} ${cleanup} ${headless$} ${!android ? `-w ${workers}` : ``}`);
  21. }