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: 4 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T11:15:51.000Z (over 2 years ago)
- Last Synced: 2025-02-14T15:03:16.150Z (4 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 [](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'
}
}
};
```