UNPKG

grunt-simple-mocha

Version:

A simple wrapper for running tests with Mocha.

12 lines (9 loc) 216 B
module.exports = function(grunt) { grunt.loadTasks('../../tasks'); grunt.initConfig({ simplemocha: { all: { src: ['./passing-test.js'] } } }); grunt.registerTask('default', 'simplemocha'); };