Skip to content

Instantly share code, notes, and snippets.

@disnet
Forked from johnkpaul/gist:2361303
Created August 20, 2012 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save disnet/3407999 to your computer and use it in GitHub Desktop.
Save disnet/3407999 to your computer and use it in GitHub Desktop.
gruntjs Mocha task
/*
* 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