Skip to content

Instantly share code, notes, and snippets.

@akre54
Created April 22, 2014 15:11
Show Gist options
  • Save akre54/11183020 to your computer and use it in GitHub Desktop.
Save akre54/11183020 to your computer and use it in GitHub Desktop.
Handlebars for mocha with browserify
var Handlebars = require('handlebars'),
fs = require('fs');
require.extensions['.hbs'] = function (module, filename) {
var raw = fs.readFileSync(filename, 'utf8');
return Handlebars.compile(raw);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment