@@ -77,7 +77,7 @@ def test(self, template_name, template_info):
77
77
if Settings .ENV != EnvironmentType .LIVE :
78
78
App .update (app_name = app_name )
79
79
80
- # Run Android with bundle
80
+ # Run Android
81
81
Adb .open_home (id = self .emu .id )
82
82
Tns .run_android (app_name = app_name , device = self .emu .id , bundle = True )
83
83
if template_info .texts is not None :
@@ -86,7 +86,7 @@ def test(self, template_name, template_info):
86
86
else :
87
87
self .emu .wait_for_main_color (color = Colors .WHITE )
88
88
89
- # Run iOS with bundle
89
+ # Run iOS
90
90
if Settings .HOST_OS is OSType .OSX :
91
91
Tns .run_ios (app_name = app_name , device = self .sim .id , bundle = True )
92
92
if template_info .texts is not None :
@@ -95,10 +95,5 @@ def test(self, template_name, template_info):
95
95
else :
96
96
self .sim .wait_for_main_color (color = Colors .WHITE )
97
97
98
- # Build in release
99
- Tns .build_android (app_name = app_name , release = True , bundle = True , aot = True , uglify = True , snapshot = True )
100
- if Settings .HOST_OS is OSType .OSX :
101
- Tns .build_ios (app_name = app_name , release = True , for_device = True , bundle = True , aot = True , uglify = True )
102
-
103
98
# Cleanup
104
99
Folder .clean (local_path )
0 commit comments