0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Removed accidentally committed file

- This was accidentally included in a fixup commit
This commit is contained in:
Hannah Wolfe 2022-10-30 14:38:59 +00:00
parent 096dffb817
commit 3ec0057567
No known key found for this signature in database
GPG key ID: AB586C3B5AE5C037

View file

@ -1,12 +0,0 @@
const handlebars = require('../../../../core/frontend/services/theme-engine/engine').handlebars;
function shouldCompileToExpected(templateString, hash, expected) {
const template = handlebars.compile(templateString);
const result = template(hash);
result.should.eql(expected);
}
module.exports = {
shouldCompileToExpected
};