New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

wdio-json-output-reporter

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wdio-json-output-reporter

wdio json output file reporter

1.1.0
Source
npm
Version published
Maintainers
1
Created
Source

wdio-json-output-reporter

outputs json file after wdio test run

similar format as mocha-spec-json-output-reporter

Usage

in wdio.conf.js file

const Reporter = require('wdio-json-output-reporter');

add reporter to reporters:

exports.config = {
  reporters: [Reporter]
};

Options

specify output fileName & hierarchy mode (nested describe blocks are considered suite inside a suite)

exports.config = {
  reporterOptions: {
    fileName: '<fileName>',
    filePath: '<filePath>',
    hierarchy: true
  }
};

FAQs

Package last updated on 28 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts