File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ def test_400_create_project_with_wrong_template_path(self):
188
188
output = Tns .create_app (self .app_name , attributes = {"--template" : "invalidEntry" },
189
189
assert_success = False , update_modules = False )
190
190
assert "successfully created" not in output
191
- assert "npm ERR! " in output
191
+ assert "Not Found " in output
192
192
assert "404" in output
193
193
194
194
def test_401_create_project_with_empty_template_path (self ):
Original file line number Diff line number Diff line change 2
2
Test for building projects with iOS platform
3
3
"""
4
4
import os
5
+ import unittest
5
6
6
7
from core .base_class .BaseClass import BaseClass
7
8
from core .device .simulator import Simulator
@@ -125,6 +126,7 @@ def test_300_build_ios_with_dash(self):
125
126
output = File .read (self .app_name_dash + os .sep + "package.json" )
126
127
assert app_identifier in output
127
128
129
+ @unittest .skip ("Temporary ignore: https://github.com/NativeScript/NativeScript/issues/6026" )
128
130
def test_301_build_ios_with_space (self ):
129
131
Tns .create_app (self .app_name_space )
130
132
Tns .platform_add_ios (attributes = {"--path" : "\" " + self .app_name_space + "\" " ,
You can’t perform that action at this time.
0 commit comments