Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
hermione-test-repeater
Advanced tools
Plugin for hermione to repeat tests the specified number of times.
You can read more about hermione plugins here.
npm install hermione-test-repeater
Plugin has following configuration:
Boolean
– enable/disable the plugin. true
by default;Number
– how many times tests should be repeated regardless of the result. 0
by default;Number
- minimum limit of repeat count. 0
by default;Number
- maximum limit of repeat count. Infinity
by default;Boolean
- run each test in a unique session. true
by default.Also there is ability to override plugin parameters by CLI options or environment variables
(see configparser).
Use hermione_test_repeater
prefix for the environment variables and --test-repeater-
for the cli options.
For example you can override repeat
option like so:
$ hermione_test_repeater_repeat=5 npx hermione
$ npx hermione --test-repeater-repeat 5
Add plugin to your hermione
config file:
module.exports = {
// ...
plugins: {
'hermione-test-repeater': {
enabled: true,
repeat: 50,
minRepeat: 10,
maxRepeat: 100,
uniqSession: true
},
},
// ...
};
Additional options that are added to the hermione.
Option that adds ability to set repeat count in more convenient way.
Example of usage:
npx hermione --repeat 5
FAQs
Plugin for repeat tests the specified number of times
The npm package hermione-test-repeater receives a total of 19 weekly downloads. As such, hermione-test-repeater popularity was classified as not popular.
We found that hermione-test-repeater demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.