hermione-chunks
v0.2.1
Published
Hermione plugin to run tests in chunks
Downloads
6
Readme
hermione-chunks
Plugin for [hermione]https://github.com/gemini-testing/hermione) to run separate chunks of tests.
Install
$ npm install hermione-chunks
Usage
Add the plugin configuration file:
module.exports = {
plugins: {
// the configuration below makes hermione distribute all tests on 7 chunks and run only the 1st chunk
'hermione-chunks': {
count: 7,
run: 1
}
}
};