0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/test/unit/helpers/t.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

56 lines
1.5 KiB
JavaScript

const should = require('should');
const path = require('path');
const t = require('../../../core/frontend/helpers/t');
const themeI18n = require('../../../core/frontend/services/theme-engine/i18n');
describe('{{t}} helper', function () {
let ogBasePath = themeI18n.basePath;
before(function () {
themeI18n.basePath = path.join(__dirname, '../../utils/fixtures/themes/');
});
after(function () {
themeI18n.basePath = ogBasePath;
});
it('theme translation is DE', function () {
themeI18n.init({activeTheme: 'casper', locale: 'de'});
let rendered = t.call({}, 'Top left Button', {
hash: {}
});
rendered.should.eql('Oben Links.');
});
it('theme translation is EN', function () {
themeI18n.init({activeTheme: 'casper', locale: 'en'});
let rendered = t.call({}, 'Top left Button', {
hash: {}
});
rendered.should.eql('Left Button on Top');
});
it('[fallback] no theme translation file found for FR', function () {
themeI18n.init({activeTheme: 'casper', locale: 'fr'});
let rendered = t.call({}, 'Top left Button', {
hash: {}
});
rendered.should.eql('Left Button on Top');
});
it('[fallback] no theme files at all, use key as translation', function () {
themeI18n.init({activeTheme: 'casper-1.4', locale: 'de'});
let rendered = t.call({}, 'Top left Button', {
hash: {}
});
rendered.should.eql('Top left Button');
});
});