Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Mar 7, 2014
1 parent 05ede47 commit b0f49f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<artifactId>thucydides</artifactId>
<groupId>net.thucydides</groupId>
<version>0.9.233</version>
<version>0.9.235</version>
</parent>
<groupId>net.thucydides</groupId>
<artifactId>thucydides-jbehave-plugin</artifactId>
<version>0.9.234-SNAPSHOT</version>
<version>0.9.235-SNAPSHOT</version>
<name>thucydides-jbehave-plugin</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>net.thucydides</groupId>
<artifactId>thucydides-core</artifactId>
<version>0.9.233</version>
<version>0.9.235</version>
</dependency>
<dependency>
<groupId>org.jbehave</groupId>
Expand Down Expand Up @@ -110,7 +110,7 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.8.4</version>
<version>2.2.1</version>
<!--<scope>test</scope>-->
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void prepareReporter() throws IOException {

outputDirectory = temporaryFolder.newFolder("output");
environmentVariables.setProperty("thucydides.outputDirectory", outputDirectory.getAbsolutePath());
environmentVariables.setProperty("webdriver.driver", "phantomjs");
environmentVariables.setProperty("webdriver.driver", "chrome");
systemConfiguration = new SystemPropertiesConfiguration(environmentVariables);
screenshotProcessor = new SingleThreadScreenshotProcessor(environmentVariables);// Injectors.getInjector().getInstance(ScreenshotProcessor.class);
raisedErrors.clear();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public void should_be_possible_to_define_multiple_metafilters() throws Throwable
public void should_be_possible_to_define_groovy_metafilters() throws Throwable {

// Given
systemConfiguration.getEnvironmentVariables().setProperty("webdriver.driver","htmlunit");
systemConfiguration.getEnvironmentVariables().setProperty("metafilter", "groovy:true==false");
ThucydidesJUnitStories allStories = new ThucydidesJUnitStories(systemConfiguration);
allStories.setSystemConfiguration(systemConfiguration);
Expand Down

0 comments on commit b0f49f0

Please sign in to comment.