Skip to content

Commit 0f6d89f

Browse files
committed
Fix test_100_tns_run_android_release
1 parent f19d800 commit 0f6d89f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/emulator/run_android_tests.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,11 @@ def test_100_tns_run_android_release(self):
164164
'--keyStoreAliasPassword': ANDROID_KEYSTORE_ALIAS_PASS,
165165
'--release': ''}, wait=False, assert_success=False)
166166

167-
strings = ['Project successfully prepared']
168-
Tns.wait_for_log(log_file=log, string_list=strings, timeout=60)
167+
strings = ['Project successfully prepared', 'Project successfully built',
168+
'Successfully installed on device with identifier',
169+
'Successfully started on device with identifier',
170+
'JS:', EMULATOR_ID]
171+
Tns.wait_for_log(log_file=log, string_list=strings, timeout=120)
169172

170173
# Verify app looks is update after changes in js, css and xml
171174
Device.screen_match(device_name=EMULATOR_NAME, device_id=EMULATOR_ID,

0 commit comments

Comments
 (0)