mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
22e13acd65
- All var declarations are now const or let as per ES6 - All comma-separated lists / chained declarations are now one declaration per line - This is for clarity/readability but also made running the var-to-const/let switch smoother - ESLint rules updated to match How this was done: - npm install -g jscodeshift - git clone https://github.com/cpojer/js-codemod.git - git clone git@github.com:TryGhost/Ghost.git shallow-ghost - cd shallow-ghost - jscodeshift -t ../js-codemod/transforms/unchain-variables.js . -v=2 - jscodeshift -t ../js-codemod/transforms/no-vars.js . -v=2 - yarn - yarn test - yarn lint / fix various lint errors (almost all indent) by opening files and saving in vscode - grunt test-regression - sorted!
68 lines
1.8 KiB
JavaScript
68 lines
1.8 KiB
JavaScript
const should = require('should');
|
|
|
|
// Stuff we are testing
|
|
const helpers = require('../../../core/frontend/helpers');
|
|
|
|
describe('{{content}} helper', function () {
|
|
it('renders empty string when null', function () {
|
|
const html = null;
|
|
const rendered = helpers.content.call({html: html});
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('');
|
|
});
|
|
|
|
it('can render content', function () {
|
|
const html = 'Hello World';
|
|
const rendered = helpers.content.call({html: html});
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal(html);
|
|
});
|
|
|
|
it('can truncate html by word', function () {
|
|
const html = '<p>Hello <strong>World! It\'s me!</strong></p>';
|
|
|
|
const rendered = (
|
|
helpers.content
|
|
.call(
|
|
{html: html},
|
|
{hash: {words: 2}}
|
|
)
|
|
);
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('<p>Hello <strong>World!</strong></p>');
|
|
});
|
|
|
|
it('can truncate html to 0 words', function () {
|
|
const html = '<p>Hello <strong>World! It\'s me!</strong></p>';
|
|
|
|
const rendered = (
|
|
helpers.content
|
|
.call(
|
|
{html: html},
|
|
{hash: {words: '0'}}
|
|
)
|
|
);
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('');
|
|
});
|
|
|
|
it('can truncate html by character', function () {
|
|
const html = '<p>Hello <strong>World! It\'s me!</strong></p>';
|
|
|
|
const rendered = (
|
|
helpers.content
|
|
.call(
|
|
{html: html},
|
|
{hash: {characters: 8}}
|
|
)
|
|
);
|
|
|
|
should.exist(rendered);
|
|
rendered.string.should.equal('<p>Hello <strong>Wo</strong></p>');
|
|
});
|
|
});
|