cargo-test-json-2-html 0.1.1

Convert cargo test JSON output to beautiful, self-contained HTML reports
Documentation
1
2
3
4
{ "type": "test", "name": "tests::test_pass", "event": "ok", "stdout": "This test passes with stdout\nThis test has stderr output\n" }
{ "type": "test", "name": "tests::test_fail", "event": "failed", "stdout": "This test fails with stdout\nThis test has stderr output\n\nthread 'tests::test_fail' panicked at src/main.rs:91:9:\nassertion `left == right` failed\n  left: 4\n  right: 5\nnote: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n" }
{ "type": "test", "name": "tests::test_ignored", "event": "ignored" }
{ "type": "suite", "event": "ok", "passed": 1, "failed": 1, "ignored": 1, "measured": 0, "filtered_out": 0, "exec_time": 0.000290792 }