File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 10
10
from core .npm .npm import Npm
11
11
from core .osutils .file import File
12
12
from core .osutils .folder import Folder
13
- from core .settings .settings import TAG
14
13
from core .tns .tns import Tns
15
14
from core .tns .tns_verifications import TnsAsserts
16
15
@@ -190,3 +189,11 @@ def test_404_create_project_with_template_and_ng(self):
190
189
update_modules = False )
191
190
assert "successfully created" not in output
192
191
assert "requires non-empty value" in output
192
+
193
+ def test_405_create_app_with_space_without_quotes (self ):
194
+ """Create project with space without quotes."""
195
+
196
+ # Test for https://github.com/NativeScript/nativescript-cli/issues/2727
197
+ output = Tns .run_tns_command ("create fake fake" )
198
+ assert "The parameter fake is not valid for this command" in output
199
+ assert "# tns create" in output
You can’t perform that action at this time.
0 commit comments