0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00
ghost/test/unit/helpers/title.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

31 lines
897 B
JavaScript

const should = require('should');
// Stuff we are testing
const title = require('../../../core/frontend/helpers/title');
describe('{{title}} Helper', function () {
it('can render title', function () {
const rendered = title.call({title: 'Hello World'});
should.exist(rendered);
rendered.string.should.equal('Hello World');
});
it('escapes correctly', function () {
const rendered = title.call({title: '<h1>I am a title</h1>'});
rendered.string.should.equal('&lt;h1&gt;I am a title&lt;/h1&gt;');
});
it('returns a blank string where title is missing', function () {
const rendered = title.call({title: null});
rendered.string.should.equal('');
});
it('returns a blank string where data missing', function () {
const rendered = title.call({});
rendered.string.should.equal('');
});
});