Move precompiler test filter into describe

This allows us to play nicely with in-browser tests
This commit is contained in:
kpdecker
2014-07-05 15:03:18 -05:00
parent 058e7495f9
commit 054627adb0
+8 -8
View File
@@ -1,14 +1,14 @@
/*global shouldThrow */
// NOP Under non-node environments
if (typeof process === 'undefined') {
return;
}
var Handlebars = require('../lib'),
Precompiler = require('../lib/precompiler');
describe('precompiler', function() {
// NOP Under non-node environments
if (typeof process === 'undefined') {
return;
}
var Handlebars = require('../lib'),
Precompiler = require('../lib/precompiler');
var log,
logFunction;