You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
running tests
Running 2 test suites...
Test suite unit-tests: RUNNING...
Test suite unit-tests: PASS
Test suite logged to: dist/test/mustache-1.0.2-unit-tests.log
Test suite language-specifications: RUNNING...
language-specifications: curl: callProcess: runInteractiveProcess: exec: does not exist (No such file or directory)
Test suite language-specifications: FAIL
Test suite logged to: dist/test/mustache-1.0.2-language-specifications.log
1 of 2 test suites (1 of 2 test cases) passed.
That won't wok because (a) curl hasn't been declared as a build-tool and thus isn't available in the build environment and (b) builds don't have network access anyway. How would I remedy this issue? Is there a way to run those tests without depending on the network?
The text was updated successfully, but these errors were encountered:
If the files were present by some other means the network would not be required at all (although I'd have to change the tests slightly).
Furthermore theoretically the unit tests are sufficient, since they cover basically all the same cases, however these integration tests are run against the official spec which is a nice insurance to have.
It seems the test suite tries to execute
curl
?That won't wok because (a)
curl
hasn't been declared as a build-tool and thus isn't available in the build environment and (b) builds don't have network access anyway. How would I remedy this issue? Is there a way to run those tests without depending on the network?The text was updated successfully, but these errors were encountered: