Skip to content

Commit

Permalink
Profiles for major browsers added
Browse files Browse the repository at this point in the history
  • Loading branch information
Juraj Huska committed Mar 31, 2014
1 parent 89d2eb1 commit 58cde03
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jsf/simple-facelet/src/test/resources/arquillian.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</engine>

<extension qualifier="webdriver">
<property name="browser">${browser:firefox}</property>
<property name="browser">${browser}</property>
</extension>

</arquillian>
36 changes: 36 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@

<build>
<finalName>${project.artifactId}</finalName>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -667,6 +673,36 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>browser-firefox</id>
<properties>
<browser>firefox</browser>
</properties>
</profile>
<profile>
<id>browser-chrome</id>
<properties>
<browser>chrome</browser>
</properties>
</profile>
<profile>
<id>browser-ie</id>
<properties>
<browser>internetExplorer</browser>
</properties>
</profile>
<profile>
<id>browser-safari</id>
<properties>
<browser>safari</browser>
</properties>
</profile>
<profile>
<id>browser-phantomjs</id>
<properties>
<browser>phantomjs</browser>
</properties>
</profile>
<profile>
<id>javadocs</id>
<activation>
Expand Down

0 comments on commit 58cde03

Please sign in to comment.