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

wdio-slick-reporter

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wdio-slick-reporter

A slick WebdriverIO reporter intended for local development.

1.0.1
latest
npm
Version published
Weekly downloads
633
-16.05%
Maintainers
1
Weekly downloads
 
Created
Source

WDIO Slick Reporter

A slick WebdriverIO reporter intended for local development.

Installation

Install wdio-slick-reporter as a devDependency.

npm install --save-dev wdio-slick-reporter

Configuration

Use like any other reporter. Setting logLevel to silent is recommended, otherwise the reporter output will be broken by extraneous logging done by wdio. Example:

// wdio.conf.js
module.exports = {
  // ...
  reporters: ['slick'],
  logLevel: 'silent',
  // ...
};

Hint: you can easily use this reporter in local development, but it is not best suited for e.g. CI-environments. You can easily toggle between reporters in the config-file. Example:

  reporters: [process.env.CI ? 'spec' : 'slick'],
  logLevel: process.env.CI ? 'debug' : 'silent',

Development

Run tests:

$ npm test

Keywords

reporter

FAQs

Package last updated on 03 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