Execute the tests twice. Once via ScriptEngine and once in a browser closure
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 05 May 2014 11:43:54 +0200
branchclosure
changeset 1527c18352f3f10f
parent 1526 4d8e295a2c2e
child 1528 984f8ed9e514
Execute the tests twice. Once via ScriptEngine and once in a browser
rt/emul/compact/pom.xml
     1.1 --- a/rt/emul/compact/pom.xml	Mon May 05 11:43:24 2014 +0200
     1.2 +++ b/rt/emul/compact/pom.xml	Mon May 05 11:43:54 2014 +0200
     1.3 @@ -86,7 +86,25 @@
     1.4                          </configuration>
     1.5                      </execution>
     1.6                  </executions>                
     1.7 -            </plugin>      
     1.8 +            </plugin> 
     1.9 +            <plugin>
    1.10 +                <groupId>org.apache.maven.plugins</groupId>
    1.11 +                <artifactId>maven-surefire-plugin</artifactId>
    1.12 +                <executions>
    1.13 +                    <execution>
    1.14 +                        <id>brwsr</id>
    1.15 +                        <goals>
    1.16 +                            <goal>test</goal>
    1.17 +                        </goals>
    1.18 +                        <phase>verify</phase>
    1.19 +                        <configuration>
    1.20 +                            <systemProperties>
    1.21 +                                <vmtest.js>brwsr</vmtest.js>
    1.22 +                            </systemProperties>
    1.23 +                        </configuration>
    1.24 +                    </execution>
    1.25 +                </executions>
    1.26 +            </plugin>     
    1.27        </plugins>
    1.28    </build>
    1.29  </project>