Skip to content

Commit 81c097f

Browse files
authored
Merge pull request #339 from aeisenberg/reference-error-fix
Fixes junit reporter throws ReferenceError
2 parents be1bde2 + ce9cfe8 commit 81c097f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/reporters/junit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ exports.run = function (files, opts, callback) {
148148
for(var k in modules) {
149149
var module = modules[k];
150150
var rendered = ejs.render(tmpl, {
151-
locals: {suites: [module]}
151+
suites: [module]
152152
});
153153
var filename = path.resolve(
154154
opts.output,

0 commit comments

Comments
 (0)