riaktor
Version:
a minimalist node.js wrapper for riak built with superagent
31 lines (28 loc) • 499 B
JavaScript
;
//TODO set up code coverage output
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'lib*',
'test*',
]
},
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['test/*.js']
}
}
});
grunt.registerTask('default', [
'mochaTest',
]);
};