APCOvernight/huelog-slack

View on GitHub
stryker.conf.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = config => {
  config.set({
    files: [
      {
        pattern: 'index.js',
        mutated: true,
        included: true
      },
      'test/**/*.js'
    ],
    testRunner: 'mocha',
    mutator: 'javascript',
    transpilers: [],
    reporter: ['html', 'clear-text', 'progress'],
    testFramework: 'mocha',
    coverageAnalysis: 'off'
  })
}