Skip to content

Commit 28c9676

Browse files
Vasil ChimevVasil Chimev
Vasil Chimev
authored and
Vasil Chimev
committed
Set commands timeout
1 parent 12adf74 commit 28c9676

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/unittests/unittests_emulator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test_010_test_mocha_android_emulator(self):
3434
Tns.create_app(app_name="TNS_App")
3535
run(TNS_PATH + " test init --framework mocha --path TNS_App")
3636

37-
output = run(TNS_PATH + " test android --device emulator-5554 --justlaunch --path TNS_App")
37+
output = run(TNS_PATH + " test android --device emulator-5554 --justlaunch --path TNS_App", 60)
3838
assert "Successfully prepared plugin nativescript-unit-test-runner for android." in output
3939
assert "Project successfully prepared" in output
4040
assert "server started" in output

tests/unittests/unittests_simulator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ def tearDownClass(cls):
3737

3838
def test_010_test_jasmine_ios_simulator(self):
3939
Tns.create_app(app_name="TNS_App")
40-
run(TNS_PATH + " test init --framework jasmine --justlaunch --path TNS_App")
40+
run(TNS_PATH + " test init --framework jasmine --path TNS_App")
4141

42-
output = run(TNS_PATH + " test ios --emulator --path TNS_App")
42+
output = run(TNS_PATH + " test ios --emulator --justlaunch --path TNS_App", 60)
4343
assert "Successfully prepared plugin nativescript-unit-test-runner for ios." in output
4444
assert "Project successfully prepared" in output
4545
assert "server started" in output

0 commit comments

Comments
 (0)