Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/futantan/testcafe-reporter-to-testrail
https://github.com/futantan/testcafe-reporter-to-testrail
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/futantan/testcafe-reporter-to-testrail
- Owner: futantan
- License: mit
- Created: 2019-06-26T08:39:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T01:10:46.000Z (almost 2 years ago)
- Last Synced: 2024-03-16T06:51:24.646Z (10 months ago)
- Language: JavaScript
- Size: 1.32 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).
## 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)