blob: 6369308c05cbb24fe7b697d79d3943cd837e15a5 [file] [log] [blame]
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
codacy: {
your_target: {
files: {
'dest/default_options': ['tests/main.test.js'],
}
},
},
mochaTest: {
test: {
src: ['tests/main.test.js'],
}
}
})
grunt.loadNpmTasks('grunt-codacy')
grunt.loadNpmTasks('grunt-mocha-test')
grunt.registerTask('default', ['mochaTest'])
}