1ed3f67a创建于 2025年11月16日历史提交
// const _ = require('lodash');
// const exec = require('shell-utils').exec;

// const android = _.includes(process.argv, '--android');
// const release = _.includes(process.argv, '--release');
// const skipBuild = _.includes(process.argv, '--skipBuild');
// const headless = _.includes(process.argv, '--headless');
// const multi = _.includes(process.argv, '--multi');

// run();

// function run() {
//     const prefix = android ? `android.emu` : `ios.sim`;
//     const suffix = release ? `release` : `debug`;
//     const configuration = `${prefix}.${suffix}`;
//     const headless$ = android ? headless ? `--headless` : `` : ``;
//     const workers = multi ? 3 : 1;
    
//     if (!skipBuild) {
//         exec.execSync('npm run pod-install');
//         exec.execSync(`detox build --configuration ${configuration}`);
//     }
//     exec.execSync(`detox test --loglevel verbose --configuration ${configuration} ${headless$} ${!android ? `-w ${workers}` : ``}`); //-f "ScreenStyle.test.js" --loglevel trace
// }