Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gemini-testing/hermione-faildump
- Owner: gemini-testing
- License: mit
- Created: 2016-07-25T12:21:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T11:15:51.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T20:37:58.061Z (3 months ago)
- Topics: testplane-plugin
- Language: JavaScript
- Homepage:
- Size: 164 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
}
}
};
```