Generate a pact verification report with JUnit format. Nice to see pact verification result in Jenkins Web UI.
Add this line to your application's Gemfile:
gem 'pact_junit_formatter'
And then execute:
$ bundle
Or install it yourself as:
$ gem install pact_junit_formatter
Define your pact verification task by using Pact::VerificationTask
:
require 'pact/tasks'
Pact::VerificationTask.new(:with_report) do |task|
task.rspec_opts = '--format PactJUnitFormatter --out pact-verfication-report.xml'
task.uri(nil) # Verify with all pact files
end
The gem is available as open source under the terms of the MIT License.