Beispiel #1
0
 def test_310_run_android_bundle_uglify(self):
     sync_hello_world_ts(self.app_name, Platform.ANDROID, self.emu, uglify=True)
Beispiel #2
0
 def test_310_run_ios_bundle_uglify(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim, uglify=True)
Beispiel #3
0
 def test_200_run_android_no_hmr(self):
     sync_hello_world_ts(self.app_name, Platform.ANDROID, self.emu, hmr=False)
Beispiel #4
0
 def test_200_run_ios_no_hmr(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim, hmr=False)
Beispiel #5
0
 def test_100_run_ios(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim)
Beispiel #6
0
 def test_100_run_android(self):
     sync_hello_world_ts(self.app_name, Platform.ANDROID, self.emu)
Beispiel #7
0
 def test_300_run_ios_bundle_aot(self):
     sync_hello_world_ts(self.app_name, Platform.IOS, self.sim, aot=True)
Beispiel #8
0
 def test_300_run_android_bundle_aot(self):
     sync_hello_world_ts(self.app_name,
                         Platform.ANDROID,
                         self.emu,
                         aot=True)
Beispiel #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)