unit-viewer-react

0.5.7 • Public • Published

unit-viewer-react

A react component to display junit xml test file

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;

Demo

Live demo

License

MIT

Package Sidebar

Install

npm i unit-viewer-react

Weekly Downloads

0

Version

0.5.7

License

MIT

Unpacked Size

23.6 kB

Total Files

10

Last publish

Collaborators

  • paultrh