Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/futantan/testcafe-reporter-to-testrail


https://github.com/futantan/testcafe-reporter-to-testrail

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# testcafe-reporter-to-testrail
[![Build Status](https://travis-ci.org/futantan/testcafe-reporter-to-testrail.svg)](https://travis-ci.org/futantan/testcafe-reporter-to-testrail)

This is the **to-testrail** reporter plugin for [TestCafe](http://devexpress.github.io/testcafe).


preview

## Install

```
npm install testcafe-reporter-to-testrail
```

## Usage

When you run tests from the command line, specify the reporter name by using the `--reporter` option:

```
testcafe chrome 'path/to/test/file.js' --reporter to-testrail
```

When you use API, pass the reporter name to the `reporter()` method:

```js
testCafe
.createRunner()
.src('path/to/test/file.js')
.browsers('chrome')
.reporter('to-testrail') // <-
.run();
```

## Author
Tantan Fu (http://x)