Hermione reporter for TeamCity CI.
Read more about Hermione
plugins in the documentation.
$ npm install hermione-teamcity-reporter
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)
}
}
};