fh-wfm-message
Version:
An message module for WFM
24 lines (22 loc) • 476 B
JavaScript
module.exports = function(grunt) {
'use strict';
require('load-grunt-tasks')(grunt);
grunt.initConfig({
eslint: {
src: ["lib/**/*.js"]
},
mochaTest: {
test: {
src: ['lib/**/*-spec.js'],
options: {
reporter: 'Spec',
logErrors: true,
timeout: 10000,
run: true
}
}
}
});
grunt.registerTask('test', ['eslint', 'mochaTest']);
grunt.registerTask('default', ['test']);
};