mocha-simple-html-reporter
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "mocha-simple-html-reporter", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "HTML reporter for Mocha", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -42,2 +42,34 @@ mocha-simple-html-reporter | ||
Related | ||
------- | ||
* [mocha-html-reporter](https://github.com/HermannPencole/mocha-html-reporter) — reporter with original Mocha-style. | ||
* [good-mocha-html-reporter](https://github.com/Gauge/html_table_reporter) — reporter with custom style. | ||
* [mochawesome](https://github.com/adamgruber/mochawesome) — builds user-friendly report with percentage, charts and navigation menu. | ||
FAQ | ||
--- | ||
### Why not use original HTML reporter? | ||
> The HTML reporter is currently the only browser reporter supported by Mocha. | ||
It means that original HTML reporter not building HTML report. It run tests in browser. | ||
### Why not use `mocha-html-reporter` package? | ||
The `mocha-html-reporter` package has the following problems: | ||
* It able to return HTML-report only in console. There is no way to write to a file if your tests writing something to `stdout`. | ||
* It requires concatenating result with `head.html` and `tail.html` to build report with styles and scripts. | ||
* You can't move file with HTML report: styles link to CSS-file in `node_modules`. | ||
* It does not show execution time for slow tests. | ||
* It requires `jQuery`. | ||
### Why not use `mochawesome` package? | ||
The `mochawesome` package feels very comfortable, but html page will be quite slow for lots of tests. | ||
Besides the interface is different from the original. For some, it may be important. | ||
License | ||
@@ -44,0 +76,0 @@ ------- |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8724
78