michaelleeallen / mocha-junit-reporter

A JUnit XML reporter for mocha.
MIT License
142 stars 152 forks source link

Invalid version check for mocha 10 #179

Open rickh18 opened 1 year ago

rickh18 commented 1 year ago

The version check in index.js is not valid for mocha 10+


 var version = json.version;
  if (version >= "6") {
    createStatsCollector = require("mocha/lib/stats-collector");
    mocha6plus = true;
  } else {
    mocha6plus = false;
  }

This will break the stats collector. Other functions work fine.