Don't exit with error status when node.js tests fail

This commit is contained in:
Alexey Andreev
2017-07-05 17:07:26 +03:00
parent 4cef8728d7
commit 2f74fd6f90
+1 -1
View File
@@ -132,7 +132,7 @@
<target name="run-nodejs-tests" description="Run JS backend tests in node.js" depends="download-nodejs-and-npm">
<npm command="install" dir="js/js.translator/testData" />
<npm command="run" dir="js/js.translator/testData">
<npm command="run" dir="js/js.translator/testData" failonerror="false">
<arg value="test"/>
</npm>
</target>