Ghost/test/unit/helpers/raw.test.js
Hannah Wolfe 1bbaf65a22
Removed need for index.js in frontend/helpers
- The index.js file was actually loader code
- It was mainly used by the unit tests, which needed to be rewritten to get each helper individually
2021-10-04 16:46:01 +01:00

41 lines
1.1 KiB
JavaScript

const should = require('should');
const raw = require('../../../core/frontend/helpers/raw');
const handlebars = require('../../../core/frontend/services/theme-engine/engine').handlebars;
let defaultGlobals;
function compile(templateString) {
const template = handlebars.compile(templateString);
template.with = (locals = {}, globals) => {
globals = globals || defaultGlobals;
return template(locals, globals);
};
return template;
}
describe('{{raw}} helper', function () {
before(function () {
handlebars.registerHelper('raw', raw);
});
it('can correctly compile space', function () {
compile('{{{{raw}}}} {{{{/raw}}}}')
.with({})
.should.eql(' ');
});
it('can correctly ignore handlebars', function () {
compile('{{{{raw}}}}{{test}}{{{{/raw}}}}')
.with({tag: {}})
.should.eql('{{test}}');
});
it('can correctly compile recursive', function () {
compile('{{{{raw}}}}{{{{raw}}}}{{{{/raw}}}}{{{{/raw}}}}')
.with({tag: {}})
.should.eql('{{{{raw}}}}{{{{/raw}}}}');
});
});