Generating FlexUnit Test Reports with Flex Mojos

The original post is from Justin, and can be found here.

Just need to add this to pom.xml:

<reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-report-plugin</artifactId>
        <configuration>
          <reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
        </configuration>
    </plugin>
    </plugins>
  </reporting>

Good tests for every one.

VELO

One Response to “Generating FlexUnit Test Reports with Flex Mojos”

  1. Flex-Mojos » FlexUnit Test Reports Says:

    […] Some time ago, I write a post with instructions to generate test reports here. […]

Leave a Reply