Skip to content

Commit

Permalink
fix: avoid considering the 'finish' report as an error
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannmoinet committed Feb 23, 2016
1 parent 2abfa05 commit 162a493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function start (filesPath, reporterFilePath) {
addFile(file);
});

runner.on('finish', exitHandler.bind(null, {exit: true}));
runner.on('finish', exitHandler.bind(null, {exit: true}, null));
runner.run(files);
}
}
Expand Down

0 comments on commit 162a493

Please sign in to comment.