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