ESpec formatter for the JUnit XML format
Add espec_junit_formatter to your list of dependencies in mix.exs:
def deps do
[{:espec_junit_formatter, "~> 0.1.1"}]
endTo use this formatter, add this to your spec_helper.exs file:
ESpec.configure fn(config) ->
config.formatters [
{ESpec.JUnitFormatter, %{out_path: "some/path/junit.xml"}}
]
endThis draws heavily from victorolinasc/junit-formatter