buster-coffee¶
Automatically compile CoffeeScript files before running tests. In its current
state, this extension does not work for files that are to be included using
require(), and is thus not very useful for Node.js projects.
Usage¶
Load in your configuration file:
var config = module.exports;
config["Browser tests"] = {
rootPath: "../",
sources: ["src/**/*.coffee"],
tests: ["test/**/*.coffee"],
extensions: [require("buster-coffee")]
};