/wct-xunit-reporter

Reporter plugin to produce xUnit XML output file on WCT test runs

Primary LanguageJavaScriptApache License 2.0Apache-2.0

#wct-xunit-reporter

##Installing

npm install wct-xunit-reporter

After installation, run wct with the plugin enabled: wct --plugin xunit-reporter

or you can also enable it in your wct.conf.js

module.exports = {
  plugins: {
    local: {
      browsers: ['chrome']
    },
    sauce: false,
    'xunit-reporter': {
      'output': 'testfile.xml'
    }
  }
};