1.0.0 • Published 8 years ago

hermione-teamcity-reporter v1.0.0

Weekly downloads
338
License
ISC
Repository
github
Last release
8 years ago

hermione-teamcity-reporter Build Status

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)
        }
    }
};