We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using mochawesome from an npm script does not appear to use the documented default of true for the enableCharts option.
true
enableCharts
"NODE_ENV=test mocha --check-leaks --recursive --compilers js:babel-register --require test/unit/setup 'test/unit/**/*.spec.js' --reporter mochawesome --reporter-options reportDir=reports/unit-tests,reportFilename=index"
Without enableCharts=true in the reporter-options collection, I do not see the "wheel" on each test in the resulting report.
enableCharts=true
"NODE_ENV=test mocha --check-leaks --recursive --compilers js:babel-register --require test/unit/setup 'test/unit/**/*.spec.js' --reporter mochawesome --reporter-options reportDir=reports/unit-tests,reportFilename=index,enableCharts=true"
Now that I have explicitly added enableCharts=true to the reporter-options, I get the following:
Versions
npm 3.10.10 node v7.2.0 [email protected] [email protected]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using mochawesome from an npm script does not appear to use the documented default of
true
for theenableCharts
option."NODE_ENV=test mocha --check-leaks --recursive --compilers js:babel-register --require test/unit/setup 'test/unit/**/*.spec.js' --reporter mochawesome --reporter-options reportDir=reports/unit-tests,reportFilename=index"
Without
enableCharts=true
in the reporter-options collection, I do not see the "wheel" on each test in the resulting report."NODE_ENV=test mocha --check-leaks --recursive --compilers js:babel-register --require test/unit/setup 'test/unit/**/*.spec.js' --reporter mochawesome --reporter-options reportDir=reports/unit-tests,reportFilename=index,enableCharts=true"
Now that I have explicitly added
enableCharts=true
to the reporter-options, I get the following:Versions
The text was updated successfully, but these errors were encountered: