-
-
Save disnet/3407999 to your computer and use it in GitHub Desktop.
gruntjs Mocha task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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