Skip to content

Commit

Permalink
Add slick reporter to cli and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
codeclown committed Mar 27, 2018
1 parent 8499d3d commit e2e6f77
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
37 changes: 37 additions & 0 deletions docs/guide/reporters/slick.md
@@ -0,0 +1,37 @@
name: slick
category: reporters
tags: guide
index: 9
title: WebdriverIO - Slick Reporter
---

WDIO Slick Reporter
=========================

> A slick WebdriverIO reporter intended for local development.

## Installation

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

Instructions on how to install WebdriverIO can be found [here](http://webdriver.io/guide/getstarted/install.html).

## Configuration

Add the reporter to your reporter list and set `logLevel` to `silent` in your [wdio.conf.js](http://webdriver.io/guide/testrunner/configurationfile.html) file:

```js
exports.config = {
// ...
reporters: ['slick'],
logLevel: 'silent',
// ...
}
```

## Links

- Read more at [GitHub](https://github.com/codeclown/wdio-slick-reporter)
3 changes: 2 additions & 1 deletion lib/cli.js
Expand Up @@ -32,7 +32,8 @@ const SUPPORTED_REPORTER = [
' json - https://github.com/fijijavis/wdio-json-reporter',
' concise - https://github.com/FloValence/wdio-concise-reporter',
' testrail - https://github.com/oxynade/wdio-testrail-reporter',
' mochawesome - https://github.com/fijijavis/wdio-mochawesome-reporter'
' mochawesome - https://github.com/fijijavis/wdio-mochawesome-reporter',
' slick - https://github.com/codeclown/wdio-slick-reporter'
]
const SUPPORTED_SERVICES = [
' sauce - https://github.com/webdriverio/wdio-sauce-service',
Expand Down

0 comments on commit e2e6f77

Please sign in to comment.