CleverStack/node-seed

View on GitHub
tasks/grunt/copy.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  testModule: {
    files: [{
      expand:       true,
      dot:          false,
      filter:       'isFile',
      cwd:          './tests/unit/',
      dest:         './modules/',
      src:          [
        'test-module/**/*'
      ]
    }]
  }
};