我是Maven的新手,我有一个问题:
我有一个带有UI文件夹(React)的项目,该文件夹有一个pom.xml
文件。
它的执行步骤之一是,例如:
<execution>
<id>Build JS in Production Mode</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
如果我在JavaScript单元测试失败时希望整个构建失败,该怎么办? 我是否应该添加另一个执行步骤,如:
<execution>
<id>Run Unit Tests</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>run test</arguments>
</configuration>
</execution>
它会发现单元测试失败吗? (我正在使用Jest框架进行JS单元测试)