Skip to content

Commit

Permalink
Fixes junit reporter throws ReferenceError
Browse files Browse the repository at this point in the history
  • Loading branch information
aeisenberg committed Feb 14, 2017
1 parent be1bde2 commit ce9cfe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reporters/junit.js
Original file line number Diff line number Diff line change
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 ce9cfe8

Please sign in to comment.