Exemple #1
0
 def test_310_run_android_bundle_uglify(self):
     sync_hello_world_ts(self.app_name, Platform.ANDROID, self.emu, uglify=True)
Exemple #2
0
 def test_310_run_ios_bundle_uglify(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim, uglify=True)
Exemple #3
0
 def test_200_run_android_no_hmr(self):
     sync_hello_world_ts(self.app_name, Platform.ANDROID, self.emu, hmr=False)
Exemple #4
0
 def test_200_run_ios_no_hmr(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim, hmr=False)
Exemple #5
0
 def test_100_run_ios(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim)
Exemple #6
0
 def test_100_run_android(self):
     sync_hello_world_ts(self.app_name, Platform.ANDROID, self.emu)
Exemple #7
0
 def test_300_run_ios_bundle_aot(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim, aot=True)
Exemple #8
0
 def test_300_run_android_bundle_aot(self):
     sync_hello_world_ts(self.app_name,
                         Platform.ANDROID,
                         self.emu,
                         aot=True)
Exemple #9
0
 def test_320_run_ios_bundle_aot_and_uglify(self):
     sync_hello_world_ts(self.app_name,
                         Platform.IOS,
                         self.sim,
                         aot=True,
                         uglify=True)