gemini-testing / hermione-faildump

Testplane plugin to collect information about test fails

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hermione-faildump Build Status

Plugin for Hermione which collects all test fails and saves them to the specified file (default: ./hermione-faildump.json). Read more about Hermione plugins in the documentation.

Install

$ npm install hermione-faildump

Usage

Add plugin to your configuration file:

module.exports = {
    plugins: {
        faildump: true
    }
};

You can redefine the default report name this way:

module.exports = {
    plugins: {
        faildump: {
            targetFile: 'awesome-faildump.json'
        }
    }
};

About

Testplane plugin to collect information about test fails

License:MIT License


Languages

Language:JavaScript 100.0%