我刚刚下载了jsonix,当我运行maven时,它未通过内置测试,并出现以下错误:
FAILURES: 2/898 assertions failed (332ms)
npm ERR! Test failed. See above for more details.
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for Jsonix 2.4.2-SNAPSHOT:
[INFO]
[INFO] Jsonix ............................................. SUCCESS [ 0.698 s]
[INFO] Jsonix Scripts ..................................... SUCCESS [ 9.933 s]
[INFO] Jsonix Node.js ..................................... SUCCESS [ 0.014 s]
[INFO] Jsonix Node.js Scripts ............................. FAILURE [ 4.296 s]
[INFO] Jsonix Node.js Tests ............................... SKIPPED
...etc other skipped tests omitted
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
我真的不太了解Maven,尽管显示了“更多信息,请参阅上文”,但实际上我看不到任何可以帮助我调试的细节。
任何有关如何调试或修复此问题的建议将不胜感激。
答案 0 :(得分:1)
请使用Jsonix issue tracker提出项目特定的问题。
检查failing scripts
module中的pom.xml
:
<execution>
<id>npm-test</id>
<phase>test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<arguments>
<argument>test</argument>
</arguments>
</configuration>
</execution>
因此,显然Maven在npm test
阶段只是执行test
。您也可以:
jsonix/nodejs/scripts> npm test
> jsonix@2.4.2-SNAPSHOT test ...\jsonix\nodejs\scripts
> nodeunit tests/tests.js
...
√ Jsonix - Issues - Issues - GH96 - Standard - Roundtrips - test_any.xml
Testing [...\jsonix\nodejs\scripts\tests\GH96/test_any].
√ Jsonix - Issues - Issues - GH96 - Standard - Comparisons - test_any.xml
√ Jsonix - Issues - Issues - GH111 - MarshallsWithPrefix
√ Jsonix - Issues - Issues - GH135 - A_B
√ Jsonix - Issues - Issues - GH135 - B_A
√ Jsonix - Issues - Issues - GH141 - DurationP
√ Jsonix - Issues - Issues - GH150 - A_B
√ Jsonix - Issues - Issues - GH150 - B_A
OK: 898 assertions (696ms)
如果某些测试失败,则可以将输出重定向到文件(npm test >std.log 2>err.log
),并检查哪些测试失败。
请file issues,以便将其解决。
目前我无法重现此内容,本地计算机上的构建为绿色。
免责声明:我是Jsonix的作者。