forked from lix-project/lix-website
23 lines
548 B
JavaScript
23 lines
548 B
JavaScript
|
module.exports = function(grunt) {
|
||
|
|
||
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||
|
grunt.loadNpmTasks('grunt-mocha-test');
|
||
|
|
||
|
grunt.initConfig({
|
||
|
pkg: grunt.file.readJSON('package.json'),
|
||
|
jshint: {
|
||
|
options: {
|
||
|
node: true
|
||
|
},
|
||
|
main : ["index.js"]
|
||
|
},
|
||
|
mochaTest: {
|
||
|
options: {
|
||
|
reporter: 'spec'
|
||
|
},
|
||
|
src: ['test/*.test.js']
|
||
|
}
|
||
|
});
|
||
|
|
||
|
grunt.registerTask('default', ['jshint:main', 'mochaTest']);
|
||
|
};
|