We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 607c7fb commit 5c0c392Copy full SHA for 5c0c392
tests/build/common/logtrace_tests.py
@@ -22,9 +22,9 @@ def test_101_create_project_log_trace(self):
22
assert "template-hello-world with version undefined." in output
23
24
if CURRENT_OS == OSType.WINDOWS:
25
- assert 'spawn: npm.cmd "install" "tns-core-modules" "--save" "--save-exact"' in output
+ assert 'spawn: npm.cmd "install" "tns-core-modules@' in output
26
else:
27
- assert 'spawn: npm "install" "tns-core-modules" "--save" "--save-exact"' in output
+ assert 'spawn: npm "install" "tns-core-modules@' in output
28
assert "Project " + self.app_name + " was successfully created" in output
29
30
def test_102_platform_add_log_trace(self):
0 commit comments