有没有办法通过maven/ant运行节点单元测试?



我在nodeunit中为我的node.js应用程序创建了一些单元测试。我希望能够通过maven/ant运行测试,因为我打算通过Jenkins运行它们。有人在这方面取得过成功吗?

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>

相关内容

  • 没有找到相关文章