Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gemini-testing/hermione-faildump

Testplane plugin to collect information about test fails
https://github.com/gemini-testing/hermione-faildump

testplane-plugin

Last synced: about 2 months ago
JSON representation

Testplane plugin to collect information about test fails

Awesome Lists containing this project

README

        

# hermione-faildump [![Build Status](https://travis-ci.org/gemini-testing/hermione-faildump.svg?branch=master)](https://travis-ci.org/gemini-testing/hermione-faildump)

Plugin for [Hermione](https://github.com/gemini-testing/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](https://github.com/gemini-testing/hermione#plugins).

## Install

```bash
$ npm install hermione-faildump
```

## Usage

Add plugin to your configuration file:

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

You can redefine the default report name this way:

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