forked from enviPath/enviPy
Current Dev State
This commit is contained in:
73
static/js/ketcher2/node_modules/wdio-dot-reporter/README.md
generated
vendored
Normal file
73
static/js/ketcher2/node_modules/wdio-dot-reporter/README.md
generated
vendored
Normal file
@ -0,0 +1,73 @@
|
||||
WDIO Dot Reporter
|
||||
=================
|
||||
|
||||
[](https://travis-ci.org/webdriverio/wdio-dot-reporter) [](https://codeclimate.com/github/webdriverio/wdio-dot-reporter) [](https://codeclimate.com/github/webdriverio/wdio-dot-reporter/coverage) [](https://david-dm.org/webdriverio/wdio-dot-reporter)
|
||||
|
||||
***
|
||||
|
||||
> A WebdriverIO plugin to report in dot style.
|
||||
|
||||

|
||||
|
||||
## Installation
|
||||
|
||||
The easiest way is to keep `wdio-dot-reporter` as a devDependency in your `package.json`.
|
||||
|
||||
```json
|
||||
{
|
||||
"devDependencies": {
|
||||
"wdio-dot-reporter": "~0.0.8"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
You can simple do it by:
|
||||
|
||||
```bash
|
||||
npm install wdio-dot-reporter --save-dev
|
||||
```
|
||||
|
||||
Instructions on how to install `WebdriverIO` can be found [here](http://webdriver.io/guide/getstarted/install.html).
|
||||
|
||||
## Configuration
|
||||
|
||||
Following code shows the default wdio test runner configuration. Just add `'dot'` as reporter
|
||||
to the array.
|
||||
|
||||
```js
|
||||
// wdio.conf.js
|
||||
module.exports = {
|
||||
// ...
|
||||
reporters: ['dot'],
|
||||
// ...
|
||||
};
|
||||
```
|
||||
|
||||
## Development
|
||||
|
||||
All commands can be found in the package.json. The most important are:
|
||||
|
||||
Watch changes:
|
||||
|
||||
```sh
|
||||
$ npm run watch
|
||||
```
|
||||
|
||||
Run tests:
|
||||
|
||||
```sh
|
||||
$ npm test
|
||||
|
||||
# run test with coverage report:
|
||||
$ npm run test:cover
|
||||
```
|
||||
|
||||
Build package:
|
||||
|
||||
```sh
|
||||
$ npm build
|
||||
```
|
||||
|
||||
----
|
||||
|
||||
For more information on WebdriverIO see the [homepage](http://webdriver.io).
|
||||
Reference in New Issue
Block a user