mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
40fee069c9
refs: https://github.com/TryGhost/Toolbox/issues/137#issuecomment-986829141 - Moving the weird customisation of Casper out of the test fixture - Created a standalone theme for testing locales instead - This should make it easier for us to update our Casper fixture
57 lines
1.6 KiB
JavaScript
57 lines
1.6 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: 'locale-theme', locale: 'de'});
|
|
|
|
let rendered = t.call({}, 'Top left Button', {
|
|
hash: {}
|
|
});
|
|
|
|
rendered.should.eql('Oben Links.');
|
|
});
|
|
|
|
it('theme translation is EN', function () {
|
|
themeI18n.init({activeTheme: 'locale-theme', 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: 'locale-theme', 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: 'locale-theme-1.4', locale: 'de'});
|
|
|
|
let rendered = t.call({}, 'Top left Button', {
|
|
hash: {}
|
|
});
|
|
|
|
rendered.should.eql('Top left Button');
|
|
});
|
|
});
|