Beispiel #1
0
 def test_101_run_ios(self):
     sync_hello_world_ng(app_name=self.ng_app,
                         platform=Platform.IOS,
                         device=self.sim,
                         bundle=False,
                         hmr=False,
                         instrumented=False)
Beispiel #2
0
 def test_100_run_android(self):
     sync_hello_world_ng(app_name=self.ng_app,
                         platform=Platform.ANDROID,
                         device=self.emu,
                         bundle=False,
                         hmr=False,
                         instrumented=False)
Beispiel #3
0
 def test_320_run_ios_bundle_aot_and_uglify(self):
     sync_hello_world_ng(self.app_name,
                         Platform.IOS,
                         self.sim,
                         aot=True,
                         uglify=True)
Beispiel #4
0
 def test_320_run_android_bundle_aot_and_uglify(self):
     sync_hello_world_ng(self.app_name,
                         Platform.ANDROID,
                         self.emu,
                         aot=True,
                         uglify=True)
Beispiel #5
0
 def test_310_run_ios_bundle_uglify(self):
     sync_hello_world_ng(self.app_name, Platform.IOS, self.sim, uglify=True)
Beispiel #6
0
 def test_300_run_ios_bundle_aot(self):
     sync_hello_world_ng(self.app_name, Platform.IOS, self.sim, aot=True)
Beispiel #7
0
 def test_100_run_ios(self):
     sync_hello_world_ng(self.app_name, Platform.IOS, self.sim)
Beispiel #8
0
 def test_100_run_android(self):
     sync_hello_world_ng(self.app_name, Platform.ANDROID, self.emu)
 def test_200_run_ios_no_hmr(self):
     sync_hello_world_ng(self.app_name, Platform.IOS, self.ios_device, hmr=False)
 def test_200_run_android_no_hmr(self):
     sync_hello_world_ng(self.app_name, Platform.ANDROID, self.android_device, hmr=False)