我在 nodeunit 中为我的 node.js 应用程序创建了一些单元测试。我希望能够通过 maven / ant 运行测试,因为我打算通过 Jenkins 运行它们。有没有人成功做到这一点?
问问题
1065 次
1 回答
1
Maven exec 插件可用于运行 Nodeunit 和适当的测试。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>nodeunit</executable>
<workingDirectory>./</workingDirectory>
<arguments>
<argument>tests/node/ServerTests.js</argument>
</arguments>
</configuration>
</plugin>
于 2011-08-04T04:21:53.567 回答