Skip to content

Commit ce9cfe8

Browse files
committed
Fixes junit reporter throws ReferenceError
1 parent be1bde2 commit ce9cfe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/reporters/junit.js

+1-1
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)