1.0.2 • Published 8 years ago

wct-xunit-reporter v1.0.2

Weekly downloads
207
License
Apache 2.0
Repository
github
Last release
8 years ago

#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'
    }
  }
};