Mocha reporter which displays Spec output and generates xunit XML file; includes deeply equal output;
npm install spec-xunit-file-deepeqBased upon spec-xunit-file reporter
Add functionality includes the ability to dump deeply equal actual and expected json values to XML test results.
1. Install spec-xunit-file-deepeq
```
> npm install --save-dev spec-xunit-file-deepeq
2. If using mocha cli with use the -R or --reporter option``
> mocha -R spec-xunit-file-deepeq`
or`
> mocha --reporter spec-xunit-file-deepeq
in the current directory i.e. process.cwd()/xunit.xmlTo override this file or location use the
XUNIT_FILE environment varrible`
> XUNIT_FILE=output/xunit.xml mocha -R xunit-file
`Set LOG_XUNIT environment variable, if you want the output in the console and xml file.
`
> LOG_XUNIT=true mocha -R xunit-file
``