benhartley/mutant

View on GitHub
.mutant/config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
    tests: {
        run: 'npm t -- --reporter tap $FILE'
    },
    mutations: [
        'boolean-literal-flip',
        'lt-to-lte',
        'lte-to-lt',
        'gt-to-gte',
        'gte-to-gt',
        'plus-to-minus',
        'minus-to-plus'
    ]
};