Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gemini-testing/hermione-skip-runner
DEPRECATED. Plugin to run skipped tests.
https://github.com/gemini-testing/hermione-skip-runner
hermione-plugin
Last synced: about 2 months ago
JSON representation
DEPRECATED. Plugin to run skipped tests.
- Host: GitHub
- URL: https://github.com/gemini-testing/hermione-skip-runner
- Owner: gemini-testing
- License: mit
- Created: 2017-03-16T10:55:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-27T21:27:34.000Z (over 6 years ago)
- Last Synced: 2024-11-08T01:41:36.726Z (2 months ago)
- Topics: hermione-plugin
- Language: JavaScript
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# hermione-skip-runner [![Build Status](https://travis-ci.org/gemini-testing/hermione-skip-runner.svg?branch=master)](https://travis-ci.org/gemini-testing/hermione-skip-runner)
Plugin for [hermione](https://github.com/gemini-testing/hermione) which is intended to run skipped tests in order to obtain some data available only in runtime.
You can read more about hermione plugins [here](https://github.com/gemini-testing/hermione#plugins).
## Installation
```bash
npm install hermione-skip-runner --save-dev
```## Usage
### Configuration
* **enabled** (optional) `Boolean` – enable/disable the plugin; by default plugin is enabled
* **ignoreTestFail** (optional) `Boolean` - do not actually fail test on fail (except browser start fail), so you can enable retries; `false` by default### Usage
Add plugin to your `hermione` config file:
```js
module.exports = {
// ...plugins: {
'skip-runner': {
enabled: false, // in most cases you pobably want skipped tests to be actually skipped,
ignoreTestFail: true
}
},// ...
};
``````bash
hermione_skip_runner_enabled=true ./node_modules/.bin/hermione
./node_modules/.bin/hermione --skip-runner-enabled true
```