unit-viewer-react
v0.5.7
Published
A react component to display junit xml test file
Downloads
10
Readme
Install
npm install unit-viewer-react
Usage
import React from 'react';
import UnitViewer from 'unit-viewer-react'
function myApp() {
const xml_report = `
<?xml version="1.0" encoding="UTF-8"?>
<testsuite tests="1" failures="0" time="0.001008">
<testcase name="LGTM" classname="Passing" time="0.000998"></testcase>
</testsuite>
`
return (
<div className="App">
<UnitViewer xml={xml_report}/>
</div>
);
}
export default myApp;