Skip to content

Commit

Permalink
Merge pull request #339 from aeisenberg/reference-error-fix
Browse files Browse the repository at this point in the history
Fixes junit reporter throws ReferenceError
  • Loading branch information
mreinstein committed Apr 25, 2017
2 parents be1bde2 + ce9cfe8 commit 81c097f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reporters/junit.js
Expand Up @@ -148,7 +148,7 @@ exports.run = function (files, opts, callback) {
for(var k in modules) {
var module = modules[k];
var rendered = ejs.render(tmpl, {
locals: {suites: [module]}
suites: [module]
});
var filename = path.resolve(
opts.output,
Expand Down

0 comments on commit 81c097f

Please sign in to comment.