12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- const _ = require('lodash');
- const exec = require('shell-utils').exec;
-
- const release = _.includes(process.argv, 'release');
-
- function buildProjForDetox() {
- const scheme = release ? `playground_release` : `playground`;
- const conf = release ? `Release` : `Debug`;
-
- exec.execSync(`cd ./playground/ios &&
- RCT_NO_LAUNCH_PACKAGER=true
- xcodebuild build
- -scheme ${scheme}
- -project playground.xcodeproj
- -sdk iphonesimulator
- -configuration ${conf}
- -derivedDataPath ./DerivedData/playground
- ONLY_ACTIVE_ARCH=YES`);
- }
-
- function runDetoxUsingMocha() {
- const detoxAppBuildPath = `playground/ios/DerivedData/playground/Build/Products/${release ? 'Release' : 'Debug'}-iphonesimulator/playground.app`;
-
- exec.execSync(`detoxAppBuildPath="${detoxAppBuildPath}"
- BABEL_ENV=test
- ./node_modules/mocha/bin/mocha e2e
- --timeout ${5 * 60 * 1000}
- --recursive
- --bail
- ${process.env.CI ? '--cleanup' : ''}`);
- }
-
- function e2e() {
- runDetoxUsingMocha();
- }
-
- function run() {
- if (!exec.which(`fbsimctl`)) {
- throw new Error(`fbsimctl must be installed: "brew tap facebook/fb && brew install fbsimctl"`);
- }
- buildProjForDetox();
- e2e();
- }
-
- run();
|