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.
npm install hermione-skip-runner --save-dev- 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;falseby default
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