react-native-navigation的迁移库

test-e2e.js 909B

123456789101112131415161718192021222324
  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 prefix = android ? `android.emu` : `ios.sim`;
  11. const suffix = release ? `release` : `debug`;
  12. const configuration = `${prefix}.${suffix}`;
  13. const headless$ = android ? headless ? `--headless` : `` : ``;
  14. const workers = multi ? 3 : 1;
  15. if (!skipBuild) {
  16. exec.execSync(`detox build --configuration ${configuration}`);
  17. }
  18. exec.execSync(`detox test --configuration ${configuration} ${headless$} ${!android ? `-w ${workers}` : ``} --loglevel trace`); //-f "ScreenStyle.test.js" --loglevel trace
  19. }