@@ -68,23 +68,23 @@ def test_100_run_android(self):
68
68
log = Tns .run_android (attributes = {'--path' : self .app_name ,
69
69
'--device' : EMULATOR_ID }, wait = False , assert_success = False )
70
70
Tns .wait_for_log (log_file = log , string_list = ['successfully built' , 'Successfully installed' ], timeout = 180 )
71
- Helpers .android_screen_match (image = self .image_original )
71
+ Helpers .android_screen_match (image = self .image_original , timeout = 80 )
72
72
73
73
# Change JS, XML and CSS
74
74
ReplaceHelper .replace (self .app_name , self .ts_change )
75
75
ReplaceHelper .replace (self .app_name , self .html_change )
76
76
ReplaceHelper .replace (self .app_name , self .css_change )
77
77
78
78
# Verify application looks correct
79
- Helpers .android_screen_match (image = self .image_change )
79
+ Helpers .android_screen_match (image = self .image_change , timeout = 80 )
80
80
81
81
# Revert changes
82
82
ReplaceHelper .rollback (self .app_name , self .html_change )
83
83
ReplaceHelper .rollback (self .app_name , self .ts_change )
84
84
ReplaceHelper .rollback (self .app_name , self .css_change )
85
85
86
86
# Verify application looks correct
87
- Helpers .android_screen_match (image = self .image_original )
87
+ Helpers .android_screen_match (image = self .image_original , timeout = 80 )
88
88
89
89
def test_200_build_android_webpack (self ):
90
90
Tns .build_android (attributes = {"--path" : self .app_name ,
0 commit comments