hermione-skip-runner
v3.0.0
Published
Plugin for hermione which is intended to run skipped tests
Downloads
7
Readme
hermione-skip-runner
Plugin for 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.
Installation
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:
module.exports = {
// ...
plugins: {
'skip-runner': {
enabled: false, // in most cases you pobably want skipped tests to be actually skipped,
ignoreTestFail: true
}
},
// ...
};
hermione_skip_runner_enabled=true ./node_modules/.bin/hermione
./node_modules/.bin/hermione --skip-runner-enabled true