rp-mocha-reporterdeprecated

mocha reporter for EPAM Report Portal

Usage no npm install needed!

<script type="module">
  import rpMochaReporter from 'https://cdn.skypack.dev/rp-mocha-reporter';
</script>

README

Mocha reporter for EPAM report portal [clone of https://github.com/fedoseev-vitaliy/mocha-rp-reporter]

This is mocha runtime reporter for EPAM report portal.

It was designed to work with mocha programmatically, in order to be able to parametrize each test run.

Instalation steps:

npm install rp-mocha-reporter

How to use:

Fill in configOptions.

const Mocha = require("mocha");
let mochaMain = new Mocha({
    reporter: 'mocha-rp-reporter',
    reporterOptions: {
        endpoint: "",
        token: "",
        launch: "",
        project: ""
    }
});