UNPKG

grunt-simple-mocha

Version:

A simple wrapper for running tests with Mocha.

13 lines (10 loc) 268 B
module.exports = function(grunt) { grunt.loadTasks('../../tasks'); grunt.initConfig({ simplemocha: { options: { fullTrace: true }, all: { src: ['./failing-test-with-stacktrace.js'] } } }); grunt.registerTask('default', 'simplemocha'); };