hermione-teamcity-reporter
v1.0.0
Published
Plugin to report results for TeamCity CI
Downloads
3
Readme
hermione-teamcity-reporter
Hermione reporter for TeamCity CI.
Read more about Hermione
plugins in the documentation.
Install
$ npm install hermione-teamcity-reporter
Usage
Add plugin to your configuration file:
module.exports = {
plugins: {
'teamcity-reporter': true
}
};
Besides, you can switch on or switch off the plugin depending on the environment, for example, this way:
module.exports = {
plugins: {
'teamcity-reporter': {
// plugin will be enabled only when hermione is run in TeamCity CI
enabled: Boolean(process.env.TEAMCITY_VERSION)
}
}
};