| 
				
			 | 
			
			
				@@ -10,8 +10,8 @@ function buildProjForDetox() { 
			 | 
		
	
		
			
			| 
				10
			 | 
			
				10
			 | 
			
			
				   shellUtils.exec.execSync(`echo 'travis_fold:start:xcodebuild'`); 
			 | 
		
	
		
			
			| 
				11
			 | 
			
				11
			 | 
			
			
				   const cmd = `RCT_NO_LAUNCH_PACKAGER=true 
			 | 
		
	
		
			
			| 
				12
			 | 
			
				12
			 | 
			
			
				           cd ios && xcodebuild 
			 | 
		
	
		
			
			| 
				13
			 | 
			
				
			 | 
			
			
				-            -scheme ${scheme}  
			 | 
		
	
		
			
			| 
				14
			 | 
			
				
			 | 
			
			
				-            ${release ? 'clean build' : 'build'}  
			 | 
		
	
		
			
			| 
				
			 | 
			
				13
			 | 
			
			
				+            -scheme ${scheme} 
			 | 
		
	
		
			
			| 
				
			 | 
			
				14
			 | 
			
			
				+            ${release ? 'clean build' : 'build'} 
			 | 
		
	
		
			
			| 
				15
			 | 
			
				15
			 | 
			
			
				             -project playground.xcodeproj 
			 | 
		
	
		
			
			| 
				16
			 | 
			
				16
			 | 
			
			
				             -sdk iphonesimulator 
			 | 
		
	
		
			
			| 
				17
			 | 
			
				17
			 | 
			
			
				             -derivedDataPath ./DerivedData/playground`; 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -42,7 +42,7 @@ function e2e() { //eslint-disable-line 
			 | 
		
	
		
			
			| 
				42
			 | 
			
				42
			 | 
			
			
				     shellUtils.exec.execSync(`detoxAppBuildPath="${detoxAppBuildPath}" 
			 | 
		
	
		
			
			| 
				43
			 | 
			
				43
			 | 
			
			
				                               BABEL_ENV=test 
			 | 
		
	
		
			
			| 
				44
			 | 
			
				44
			 | 
			
			
				                               ./node_modules/mocha/bin/mocha e2e 
			 | 
		
	
		
			
			| 
				45
			 | 
			
				
			 | 
			
			
				-                                --timeout 240000 
			 | 
		
	
		
			
			| 
				
			 | 
			
				45
			 | 
			
			
				+                                --timeout ${10 * 60 * 1000} 
			 | 
		
	
		
			
			| 
				46
			 | 
			
				46
			 | 
			
			
				                                 --recursive 
			 | 
		
	
		
			
			| 
				47
			 | 
			
				47
			 | 
			
			
				                                 --compilers js:babel-register`); 
			 | 
		
	
		
			
			| 
				48
			 | 
			
				48
			 | 
			
			
				   } finally { 
			 |