paultrh / unit-viewer-react

A react component to display junit xml test file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A react component to display junit xml test file

License:MIT License


Languages

Language:JavaScript 100.0%