如果发生故障,如何让Jenkins发送JsUnit报告?

时间:2013-01-18 18:40:35

标签: javascript maven jenkins jsunit

下面是Jankins运行的pom.xml段,但它不会在电子邮件中发送发生的错误。有没有人让这个工作。

<plugin>
            <groupId>de.berlios.jsunit</groupId>
            <artifactId>jsunit-maven2-plugin</artifactId>
            <executions>
                <execution>
                    <id>test</id>
                    <configuration>
                        <sourceDirectory>./WebContent/jsunit</sourceDirectory>
                        <sources>
                            <source>blah.js</source>

                        </sources>
                        <testSourceDirectory>./WebContent/jsunit</testSourceDirectory>
                        <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
                        <testSuites>
                            <testSuite>
                                <name>SampleSuite</name>
                                <type>TESTCASES</type>
                                <includes>
                                    <include>blah_test.js</include>
                                </includes>
                            </testSuite>
                        </testSuites>
                    </configuration>
                    <goals>
                        <goal>jsunit-test</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

1 个答案:

答案 0 :(得分:1)

默认情况下,Jenkins不会执行此操作,但如果您使用Extended Email plugin,则可以配置构建电子邮件,以便从控制台输出中包含您喜欢的任何数据。您可能还想查看these examples使用Jelly模板格式化电子邮件。