https://github.com/futantan/testcafe-reporter-to-testrail
https://github.com/futantan/testcafe-reporter-to-testrail
Last synced: 9 months 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 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T01:10:46.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T12:24:54.167Z (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
[](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)