Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/qavajs/testrail-formatter
- Owner: qavajs
- License: mit
- Created: 2022-12-05T10:15:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-20T08:13:42.000Z (over 1 year ago)
- Last Synced: 2024-11-02T01:37:31.986Z (13 days ago)
- Topics: qa, test-automation, testing
- Language: TypeScript
- Size: 169 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
},
}
}
}
```