wdio-markdown-reporter

1.0.4 • Public • Published

WebdriverIO Markdown Reporter

A WebdriverIO plugin to report in Markdown style.

Reporter

Installation

You can simple do it by:

npm install wdio-markdown-reporter --save-dev

Instructions on how to install WebdriverIO can be found here.

Configuration

At the top of the wdio.conf.js-file, add:

// wdio.conf.js
var markdownReporter = require("wdio-markdown-reporter");

In order to use the service you need to add reporter to your services array in wdio.conf.js

// wdio.conf.js
export.config = {
  reporter: : [
    [markdownReporter, {
      outputDir: ' ',
    }],
  ],
};

Configuration Options

The following configuration options are supported and are all optional. By default none of the config options are set.

outputDir

Define a directory where your markdown file should get stored.

Type: String
Required

Merge all *.md files

To generate only one markdown file use the concat-cli CLI to concat the files

concat-cli -f ./markdown-reporter/*.md -o mergeResult.md
 

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i wdio-markdown-reporter

    Weekly Downloads

    72

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    82.6 kB

    Total Files

    4

    Last publish

    Collaborators

    • cmitru