Exemple #1
0
 def test_205_preview_ios_no_hmr(self):
     """Preview project on simulator with --hmr. Make valid changes in TS, CSS and HTML"""
     preview_sync_hello_world_ng(app_name=self.app_name,
                                 platform=Platform.IOS,
                                 device=self.sim,
                                 hmr=False)
Exemple #2
0
 def test_100_preview_ios(self):
     """Preview project on simulator. Make valid changes in TS, CSS and HTML"""
     preview_sync_hello_world_ng(app_name=self.app_name,
                                 platform=Platform.IOS,
                                 device=self.sim,
                                 instrumented=True)
Exemple #3
0
 def test_205_preview_android_no_hmr(self):
     """Preview project on emulator with --hmr. Make valid changes in TS, CSS and HTML"""
     preview_sync_hello_world_ng(app_name=self.app_name,
                                 platform=Platform.ANDROID,
                                 device=self.emu,
                                 hmr=False)
Exemple #4
0
 def test_100_preview_android(self):
     """Preview project on emulator. Make valid changes in TS, CSS and HTML"""
     preview_sync_hello_world_ng(app_name=self.app_name,
                                 platform=Platform.ANDROID,
                                 device=self.emu,
                                 instrumented=True)