Skip to content

Commit

Permalink
Reinstated all the default browsers for the test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Casperson committed Jan 23, 2017
1 parent c5602a9 commit 52ec4fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/au/com/agic/apptesting/LiveTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public boolean accept(final File dir, final String name) {
public void getBrowserList() {
final String browsersSysProp = SYSTEM_PROPERTY_UTILS.getPropertyEmptyAsNull(TEST_BROWSERS_SYSTEM_PROPERTY);
if (StringUtils.isBlank(browsersSysProp)) {
//browsers.add("PhantomJS");
//browsers.add("Marionette");
browsers.add("PhantomJS");
browsers.add("Marionette");
browsers.add("Chrome");
} else {
browsers.addAll(Arrays.asList(browsersSysProp.split(",")));
Expand Down

0 comments on commit 52ec4fd

Please sign in to comment.