RE: [jbehave-user] JBehave example fails to run tests when executed from Jenkins

2014-06-03 Thread Russ Davidson
Hey Frank, Thanks for the reply. I’ve used the jbehave-web-selenium-java-spring-archetype to create the code, and so I’m still coming to grips with exactly how it is put together. There appears to be both the annotated implementation that you’ve described, AnnotatedEtsyDotComStories, and a JUn

Re: [jbehave-user] Maven Failsafe Plugin and JBehave

2014-06-03 Thread Corbin, J.D.
Was able to get it working. Just needed to specify the following dependency within the maven-failsafe-plugin definition, org.apache.maven.surefire surefire-junit47 ${surefire.version} We are using the JUnitReportingRunner which necessitated the additional dependency

Re: [jbehave-user] Maven Failsafe Plugin and JBehave

2014-06-03 Thread Mauro Talevi
Can you provide a sample project? > On 3 Jun 2014, at 18:36, "Corbin, J.D." wrote: > > I am using the maven-failsafe-plugin (as opposed to the jbehave-maven-plugin) > to run our JBehave integration tests. I appears to run the test fine, but > when there is an error it goes unreported. I'm

[jbehave-user] Maven Failsafe Plugin and JBehave

2014-06-03 Thread Corbin, J.D.
I am using the maven-failsafe-plugin (as opposed to the jbehave-maven-plugin) to run our JBehave integration tests. I appears to run the test fine, but when there is an error it goes unreported. I'm wondering if there are any others out there using the failsafe plugin with JBehave that might have

Re: [jbehave-user] JBehave example fails to run tests when executed from Jenkins

2014-06-03 Thread Frank Pedroza
The entry point for our test runs looks something like the following: @RunWith(WeldAnnotatedEmbedderRunner.class) @Configure() @UsingEmbedder(embedder = Embedder.class, verboseFailures = true, generateViewAfterStories = true, ignoreFailureInStories = tr