hermione-chunks

Hermione plugin to run tests in chunks

Usage no npm install needed!

<script type="module">
  import hermioneChunks from 'https://cdn.skypack.dev/hermione-chunks';
</script>

README

hermione-chunks Build Status

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
        }
    }
};