Skip to content

Instantly share code, notes, and snippets.

@nowk
Forked from johnkpaul/gist:2361303
Created April 28, 2014 21:03
Show Gist options
  • Save nowk/11383927 to your computer and use it in GitHub Desktop.
Save nowk/11383927 to your computer and use it in GitHub Desktop.
/*
* grunt
* https://github.com/cowboy/grunt
*
* Copyright (c) 2012 "Cowboy" Ben Alman
* Copyright (c) 2012 John K. Paul @johnkpaul
* Licensed under the MIT license.
* http://benalman.com/about/license/
*/
module.exports = function(grunt) {
// Nodejs libs.
var path = require('path');
// External libs.
var Mocha = require('mocha');
grunt.registerMultiTask('mocha', 'Run unit tests with mocha.', function() {
var filepaths = grunt.file.expandFiles(this.file.src);
grunt.file.clearRequireCache(filepaths);
var paths = filepaths.map(resolveFilepaths);
var options = {};
if(grunt.config.get('growl')){
options.growl = true;
}
var mocha_instance = new Mocha(options);
paths.map(mocha_instance.addFile.bind(mocha_instance));
mocha_instance.run(this.async());
});
function resolveFilepaths(filepath) {
return path.resolve(filepath);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment