Skip to content

Commit 949693a

Browse files
author
vhristov5555
committed
Merge remote-tracking branch 'origin/master'
2 parents 8a80b5b + 3143c63 commit 949693a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tests/build/common/create_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def test_400_create_project_with_wrong_template_path(self):
188188
output = Tns.create_app(self.app_name, attributes={"--template": "invalidEntry"},
189189
assert_success=False, update_modules=False)
190190
assert "successfully created" not in output
191-
assert "npm ERR!" in output
191+
assert "Not Found" in output
192192
assert "404" in output
193193

194194
def test_401_create_project_with_empty_template_path(self):

tests/build/ios/build_ios_tests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Test for building projects with iOS platform
33
"""
44
import os
5+
import unittest
56

67
from core.base_class.BaseClass import BaseClass
78
from core.device.simulator import Simulator
@@ -125,6 +126,7 @@ def test_300_build_ios_with_dash(self):
125126
output = File.read(self.app_name_dash + os.sep + "package.json")
126127
assert app_identifier in output
127128

129+
@unittest.skip("Temporary ignore: https://github.com/NativeScript/NativeScript/issues/6026")
128130
def test_301_build_ios_with_space(self):
129131
Tns.create_app(self.app_name_space)
130132
Tns.platform_add_ios(attributes={"--path": "\"" + self.app_name_space + "\"",

0 commit comments

Comments
 (0)