Skip to content

Commit 3b3b54c

Browse files
committed
chore: remove verification for NativeScript/nativescript-cli#3085
1 parent 0d9b326 commit 3b3b54c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/simulator/debug_ios_chrome_tests.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,14 @@ def test_002_debug_ios_simulator_debug_brk(self):
123123
Starts debugger and stop at the first code statement.
124124
"""
125125
log = Tns.debug_ios(attributes={'--path': self.app_name, '--emulator': '', '--debug-brk': ''})
126-
self.attach_chrome(log)
127126

128127
# Verify app starts and stops on the first line of code
128+
Device.screen_match(device_name=SIMULATOR_NAME, tolerance=3.0, device_id=self.SIMULATOR_ID,
129+
timeout=90, expected_image='livesync-hello-world_debug_brk')
130+
131+
self.attach_chrome(log)
132+
133+
# Verify app is still on first line of code
129134
Device.screen_match(device_name=SIMULATOR_NAME, tolerance=3.0, device_id=self.SIMULATOR_ID,
130135
expected_image='livesync-hello-world_debug_brk')
131136

@@ -191,5 +196,6 @@ def test_100_debug_ios_simulator_with_livesync(self):
191196
Device.screen_match(device_name=SIMULATOR_NAME, device_id=self.SIMULATOR_ID,
192197
expected_image='livesync-hello-world_js_css_xml')
193198

199+
# Enable next lines after https://github.com/NativeScript/nativescript-cli/issues/3085 is implemented.
194200
# Verify debugger not detached
195-
self.assert_not_detached(log)
201+
# self.assert_not_detached(log)

0 commit comments

Comments
 (0)