Feature Request/Query: Test Results generated as an HTML report
See original GitHub issueHi,
I’m using nyc with ava to generate html reports of codecoverage and an eslint library to do the same for linting results.
Could there be a possibility of generating verbose html reports of just the test results?
So may be like a TAP reporter that is good at making great UIs with data you normally get at the terminal like:
# runner » execution with noOfVendors > vendorList
ok 30 - runner » execution with noOfVendors > vendorList
# runner » execution with noOfVendors < vendorList
ok 31 - runner » execution with noOfVendors < vendorList
# runner » execution proper
ok 32 - runner » execution proper
# runner » execution success with noOfVendors < filtered vendorList
ok 33 - runner » execution success with noOfVendors < filtered vendorList
# runner » execution success with noOfVendors > filtered vendorList
ok 34 - runner » execution success with noOfVendors > filtered vendorList
1..34
# tests 34
# pass 34
# fail 0
------------|----------|----------|----------|----------|----------------|
File | % Stmts | % Branch | % Funcs | % Lines |Uncovered Lines |
------------|----------|----------|----------|----------|----------------|
All files | 100 | 100 | 100 | 100 | |
filters.js | 100 | 100 | 100 | 100 | |
runner.js | 100 | 100 | 100 | 100 | |
sorts.js | 100 | 100 | 100 | 100 | |
------------|----------|----------|----------|----------|----------------|
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Can I get test cases outcome results as a field in a query?
This solution doesn't resolve my request. I need to get the outcome from Azure DevOps project automatically with it's current Outcome status! marking...
Read more >Report layout and presentation | Visualize and present data
IMPORTANT: Mode only stores query results for historical runs, not the underlying data from your database. When a report is deleted, historical report...
Read more >Unit test reports - GitLab Docs
You can configure your job to use Unit test reports, and GitLab displays a report on the merge request so that it's easier...
Read more >Review test results - Azure Pipelines | Microsoft Learn
Test reports provide a combined view for all the attempts of a rerun, along with the overall test outcome as a summarized unit....
Read more >Query (Feature Service/Layer)—ArcGIS REST APIs
When exceededTransferLimit is true, it indicates there are more query results and you can continue to page through the results. When exceededTransferLimit is ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Good list of TAP reporters here: https://github.com/sindresorhus/awesome-tap#javascript
I’ve created a request for a good HTML reporter for TAP: https://github.com/sindresorhus/module-requests/issues/84
Ok thank you