summaryrefslogtreecommitdiffstats
path: root/spec/env/node.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/env/node.js')
-rw-r--r--spec/env/node.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/env/node.js b/spec/env/node.js
index fe34f94..e5349a1 100644
--- a/spec/env/node.js
+++ b/spec/env/node.js
@@ -1,10 +1,11 @@
require('./common');
-global.Handlebars = require('../../lib/handlebars');
+global.Handlebars = require('../../zomg/lib/handlebars');
global.CompilerContext = {
compile: function(template, options) {
var templateSpec = Handlebars.precompile(template, options);
+ console.log(templateSpec);
return Handlebars.template(eval('(' + templateSpec + ')'));
},
compileWithPartial: function(template, options) {