Skip to content

Commit

Permalink
hook tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ianperrin authored Jun 18, 2018
1 parent ec15b31 commit 9272e45
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = function(grunt) {
grunt.initConfig({
nodeunit: {
all: ['test/**/*.test.js']
},
jshint: {
all: ['*.js']
}
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');

grunt.registerTask('test', ['jshint', 'nodeunit']);
};

0 comments on commit 9272e45

Please sign in to comment.