qape-reporter-gitlab
v0.1.1
Published
QApe will report all issues to Gitlab repository
Maintainers
Readme
QApe Reporter Gitlab
This is reporter for QApe. It can report all the errors he finds to gitlab issue tracker.
Installation
Add reporter as a dependency
npm install qape-reporter-gitlabUpdate QApe config
export default {
...
reporters: ['gitlab'],
reporterOptions: {
gitlab: {
url: 'https://gitlab.com'
projectId: 1,
privateToken: 'private_token', // Gitlab private token to access gitlab API
assignees: ['username', 1] // (Optional) Gitlab username or user id
}
}
}