@@ -232,7 +232,8 @@ def test_200_run_android_bundle(self, demo):
232
232
StarterKitsTests .apply_changes (self = self , demo = demo , platform = Platform .ANDROID , device_id = EMULATOR_ID )
233
233
234
234
# Verify application looks correct
235
- Tns .wait_for_log (log_file = log , string_list = Helpers .wp_sync , not_existing_string_list = Helpers .wp_errors )
235
+ Tns .wait_for_log (log_file = log , string_list = Helpers .wp_sync , not_existing_string_list = Helpers .wp_errors ,
236
+ check_interval = 5 , timeout = 120 )
236
237
Helpers .android_screen_match (image = demo + '_sync' )
237
238
238
239
# Revert changes
@@ -250,15 +251,16 @@ def test_200_run_ios_bundle(self, demo):
250
251
log = Tns .run_ios (attributes = {'--path' : demo , '--emulator' : '' , '--bundle' : '' }, wait = False ,
251
252
assert_success = False )
252
253
Tns .wait_for_log (log_file = log , string_list = Helpers .wp_run , not_existing_string_list = Helpers .wp_errors ,
253
- timeout = 240 )
254
+ timeout = 240 , check_interval = 5 )
254
255
Helpers .ios_screen_match (sim_id = self .SIMULATOR_ID , image = demo + '_home' , tolerance = 1.0 )
255
256
Helpers .wait_webpack_watcher ()
256
257
257
258
# Apply changes
258
259
StarterKitsTests .apply_changes (self = self , demo = demo , platform = Platform .IOS , device_id = self .SIMULATOR_ID )
259
260
260
261
# Verify application looks correct
261
- Tns .wait_for_log (log_file = log , string_list = Helpers .wp_sync , not_existing_string_list = Helpers .wp_errors )
262
+ Tns .wait_for_log (log_file = log , string_list = Helpers .wp_sync , not_existing_string_list = Helpers .wp_errors ,
263
+ check_interval = 5 , timeout = 120 )
262
264
Helpers .ios_screen_match (sim_id = self .SIMULATOR_ID , image = demo + '_sync' )
263
265
264
266
# Revert changes
0 commit comments