Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/qavajs/testrail-formatter

integration with Test Rail
https://github.com/qavajs/testrail-formatter

qa test-automation testing

Last synced: 3 days ago
JSON representation

integration with Test Rail

Awesome Lists containing this project

README

        

## @qavajs/testrail-service
This package is formatter for Test Rail

### install
`npm install @qavajs/testrail-service

### configuration

add formatter to config.js
```javascript
module.exports = {
default: {
format: [
'@qavajs/testrail-service'
],
formatOptions: {
trConfig: {
baseURL: 'https://you-baseURL.testrail.io/',
userName: 'your user name',
pass: 'your password',
runId: 'run ID in test rail'
},
}
}
}
```